標題:
五則運算
[打印本頁]
作者:
tonyh
時間:
2015-1-30 11:05
標題:
五則運算
本帖最後由 tonyh 於 2015-1-30 11:08 編輯
加, 減, 乘, 除, 取餘數
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5, y=2; //宣告整數型態的變數x與y初始值分別為5與2
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;
}
複製代碼
作者:
趙弘揚
時間:
2015-1-30 11:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5,y=2;
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;
}
複製代碼
作者:
鍾奕帆
時間:
2015-1-30 11:11
#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;
}
複製代碼
作者:
曾筱文
時間:
2015-1-30 11:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5,y=2 //宣告兩個整數變數,並指定他們的值
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時"..."<<endi;
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;
}
複製代碼
作者:
吳翊民
時間:
2015-1-30 11:13
#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;
}
複製代碼
作者:
沈子耕
時間:
2015-1-30 11:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5, y=2;
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<<"..."<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許睿霖
時間:
2015-1-30 11:17
#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;
}
複製代碼
作者:
翁證翔
時間:
2015-1-30 11:17
#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;
}
複製代碼
作者:
王翔
時間:
2015-1-30 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
複製代碼
作者:
涂幸宸
時間:
2015-1-30 11:20
#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;
}
複製代碼
作者:
施正心
時間:
2015-1-30 11:21
#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;
}
複製代碼
作者:
陳鈺晟
時間:
2015-1-30 11:21
#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;
cout<<"555"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許博竣
時間:
2015-1-30 11:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
複製代碼
作者:
陳思惟
時間:
2015-1-30 11:22
回復
13#
許博竣
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=7,y=2;
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;
}
複製代碼
作者:
吳承勳
時間:
2015-1-30 11:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許育樺
時間:
2015-1-30 11:22
#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;
複製代碼
作者:
曾聖祐
時間:
2015-1-30 11:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//五則運算
int x=5,y=2;
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;
}
複製代碼
作者:
陳彥彰
時間:
2015-1-30 11:24
#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;
}
複製代碼
作者:
顏宇杰
時間:
2015-1-30 11:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"算算看"<<endl;
int x=2056, y=28;
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;
}
複製代碼
作者:
吳翊民
時間:
2015-2-1 11:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入正方形長度(公分):";
cin>>x;
cout<<"請輸入正方形長度(公分):";
cin>>x;
cout<< "這個正方形的周長為:公分"<<x+x+x+x<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2