Do you want to design website or a system?


Hi... My Name is Mohamad Fikri Bin Ramlan.

I'm a web designer and also a system developer.

If anyone want me to design a website or develop a system. You can send your request to my email: he.thumb@gmail.com or my facebook: Facebook.

My Work #1 - Kobemas System


This system use to store and update customer information. it also have search capability based on criteria inserted. it also provide report and statistical information

My Work #2 - Perpustam website

This screenshot show a library website front page which contain feature item column and other basic features of a website. This website also support multilingual and help features. Its develop using wordpress as platform.

My Work #3 - Micth website

This is a screenshot of a website that I and other staffs working on during my practical training At Micth. This the company website which build using wordpress as platform.

C++ Mathematical operation

Sorry if there is some empty or wrong syntax because the post editor
is did not properly paste the intended contain.


/*
This a c++ program that calculate a single basic operation.
Build using Borland C++.

By: Mohamad Fikri Bin Ramlan
*/
#include <iostream>
#include <conio>

int main()
{

   double num1, num2, choice;
   char oprt;

   choice=0;

   cout<<"**************" <<endl;
   cout<<"* calculator *" <<endl;
   cout<<"**************" <<endl;



   while ((choice < 1) && (cin))
   {
   cout<<endl;
   cout<<"\n\n\nplease enter an operation:" <<endl;

   cin>>num1>>oprt>>num2;


   if (oprt=='+')
        cout<<"="<<num1+num2;

    else if (oprt=='-')
        cout<<"="<<num1-num2;

    else if(oprt=='/')
         if (num2==0)
             cout<<"this operation is invalid"<<endl;

         else
             cout<<"="<<num1 num2;

   else if (oprt=='*')
       cout<<"="<<num1*num2;

   else
       cout << "\aDid you fail your math?"<<endl;


   choice--;

   }

   getch();
   return 0;

}

No comments:

Post a Comment