Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
My First Project
#1
Code:
#include <iostream>
using namespace std;

int addition (int a,int b)
{
    int r;
    r=a+b;
    return(r);
}



int subtraction (int a,int b)
{
    int r;
    r=a-b;
    return(r);
}


int multiplication (int a,int b)
{
    int r;
    r=a*b;
    return(r);
}



int division (int a,int b)
{
    int r;
    r=a/b;
    return(r);
}







int main ()
{
    int z;
    int a1;
    int a2;
    int o;
    cout << "First number" << endl;
    cin >> a1;
    cout << "Second number" << endl;
    cin >> a2;
    cout << "1) Addition" << endl;
    cout << "2) Subtraction" << endl;
    cout << "3) Multiplication" << endl;
    cout << "4) Division" << endl;
    cout << "What operation?: ";
    cin >> o;    
    if (o == 1) {    
        z = addition (a1,a2);
    }
    else {    
        if (o == 2) {
            z = subtraction(a1,a2);
        }
        else {
            if (o == 3){
                z = multiplication (a1,a2);
        }
        else {
            if (o ==4){    
                z = division (a1,a2);
            }
        }
    }
}    
    cout << "The result is " << z << endl;
    return 0;
}
Reply


Messages In This Thread
My First Project - by nevets04 - 11-10-2009, 11:16 PM
RE: My First Project - by Codine - 11-11-2009, 01:21 AM
RE: My First Project - by Extasey - 11-11-2009, 02:02 AM
RE: My First Project - by se7en - 11-11-2009, 04:49 AM
RE: My First Project - by MrD. - 11-11-2009, 07:28 AM
RE: My First Project - by uber1337 - 03-30-2010, 04:54 PM
RE: My First Project - by nevets04 - 03-31-2010, 11:45 PM
RE: My First Project - by uber1337 - 04-02-2010, 03:23 PM
RE: My First Project - by nevets04 - 04-02-2010, 11:14 PM
RE: My First Project - by Fallen - 04-05-2010, 06:21 PM
RE: My First Project - by Nyx- - 04-05-2010, 02:47 PM
RE: My First Project - by Drakeā„¢ - 04-05-2010, 02:52 PM
RE: My First Project - by Deities - 04-05-2010, 06:30 PM
RE: My First Project - by uber1337 - 04-06-2010, 05:42 PM
RE: My First Project - by GameOver* - 04-07-2010, 03:25 AM
RE: My First Project - by Navineous - 04-07-2010, 08:10 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)