#include<iostream>
using namespace std;
void Add1();
void Subtraction();
void Multiply();
void main()
{
Add1();
Subtraction();
Multiply();
cout<<"End of main()"<<endl;
}
void Add1()
{
int a,b,sum;
a=10;
b=20;
sum= a+b;
cout<<"sum="<<sum<<endl;
}
void Subtraction()
{
int a,b,sub1;
a=10;
b=20;
sub1=b-a;
cout<<"sub1="<<sub1<<endl;
}
void Multiply()
{
int a,b,mull;
a=10;
b=20;
mull=a*b;
cout<<"mull="<<mull<<endl;
}
沒有留言:
張貼留言