2006年3月1日 星期三

【魔.論述】程式設計3/2

#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;

}

沒有留言: