標題:
五則運算
[打印本頁]
作者:
陳品肇
時間:
2018-8-1 12:39
標題:
五則運算
+ 加
- 減
* 乘
/ 除
% 取餘數
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
int x=12,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;
}
複製代碼
作者:
邱泰澄
時間:
2018-8-1 14:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=88,y=77;
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;
}
複製代碼
作者:
湯郡一
時間:
2018-8-1 14:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5022,y=1085;
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;
}
複製代碼
作者:
田宇任
時間:
2018-8-1 14:56
本帖最後由 田宇任 於 2018-8-1 15:05 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=-98,y=99;
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 ;
}
複製代碼
作者:
傅臣嘉
時間:
2018-8-1 14:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//五則運算
//int x;
//int y;
int x=26,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;
}
複製代碼
作者:
黃資尹
時間:
2018-8-1 14:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//五則運算
//int x;
//int y;
int x=16,y=8;
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;
}
複製代碼
作者:
陳潔歆
時間:
2018-8-1 15:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=60, y=12;
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;
}
複製代碼
作者:
蔡睿紘
時間:
2018-8-1 15:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int z=9,a=3;
cout<<"z是"<<z<<"a是"<<a;
cout<<"z+a"<<z+a<<endl;
cout<<"z-a"<<z-a<<endl;
cout<<"z*a"<<z*a<<endl;
cout<<"z/a"<<z/a<<endl;
cout<<"z%a"<<z%a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾彥鈞
時間:
2018-8-1 15:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s=12,d=45;
cout<<"當s= "<<s<<",d="<<d<<"時 "<<endl;
cout<<"s+d="<<s+d<<endl ;
cout<<"s-d="<<s-d<<endl;
cout<<"s*d="<<s*d<<endl;
cout<<"s/d="<<s/d<<endl;
cout<<"s%d="<<s%d<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾宥承
時間:
2018-8-1 15:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=15,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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2