標題:
五則運算
[打印本頁]
作者:
tonyh
時間:
2013-1-22 09:36
標題:
五則運算
本帖最後由 tonyh 於 2013-1-22 10:28 編輯
加, 減, 乘, 除, 取餘數.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23, y=7; //宣告兩個整數變數,並指定它們的值
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl; //%取餘數
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-1-22 10:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=28, y=6;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許育碩
時間:
2013-1-22 10:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=8 ,y=5;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
羅家恩
時間:
2013-1-22 10:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=23, y=52;
cout<<"當x的值"<<x<<"y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林鎧言
時間:
2013-1-22 10:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=1654,y=56;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
郭凡瑛
時間:
2013-1-22 10:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5,y=3;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時...."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
複製代碼
作者:
張鈞
時間:
2013-1-22 10:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5000,y=1000;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時"<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-1-22 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=3,y=7;
cout<<"當x的值為"<<x<<"y的值"<<y<<"時...."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-1-22 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=12,y=22;
cout<<"當X的值為"<<x<<",y的值為"<<y<<"時"<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李家宇
時間:
2013-1-22 10:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23, y=7; //宣告兩個整數變數,並指定它們的值
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl; //%取餘數
system("pause");
return 0;
}
作者:
鄧皓銘
時間:
2013-1-22 10:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=50, y=100;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
複製代碼
作者:
蘇昱安
時間:
2013-1-22 10:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=1000, y=100;
cout<<"當X的值為"<<x<< ",y的值為"<<y<<"時..."<<endl;
cout<<"x+y=" << x+y << endl;
cout<<"x-y=" << x-y << endl;
cout<<"x*y=" << x*y << endl;
cout<<"x/y=" << x/y << endl;
cout<<"x%y=" << x%y << endl;
system("pause");
return 0;
作者:
翁睿辰
時間:
2013-1-22 10:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子懿
時間:
2013-1-22 10:40
#include <iostream>
#include <cstdilb>
using namespace std;
int main()
{
int x=12,y=3;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
作者:
林長逸
時間:
2013-1-22 10:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=3.1415926, y=7;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y <<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
複製代碼
作者:
高紹恩
時間:
2013-1-22 10:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int j=1,o=2;
cout<<"當j的值為"<<j<<",o的值為"<<o<<"時..."<<endl;
cout<<"j+o="<<j+o<<endl;
cout<<"j-o="<<j-o<<endl;
cout<<"j*o="<<j*o<<endl;
cout<<"j/o="<<j/o<<endl;
cout<<"j%o="<<j%o<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳東哲
時間:
2013-1-22 10:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5 ,y=3;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李家宇
時間:
2013-1-22 10:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
cout<<"當x的值為"<<x<<"y的值為"<<y <<"時...." << endl;
cout<<"x+y="<<x+y<< endl;
cout<<"x-y="<<x-y<< endl;
cout<<"x*y="<<x*y<< endl;
cout<<"x/y="<<x/y<< endl;
cout<<"x%y="<<x%y<< endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子懿
時間:
2013-1-22 11:08
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
cin>>y;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
複製代碼
作者:
郭妤真
時間:
2013-1-22 11:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=8 ,y=5;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃柏維
時間:
2013-1-23 09:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23, y=7; //宣告兩個整數變數,並指定它們的值
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl; //%取餘數
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2