標題:
五則運算(一)
[打印本頁]
作者:
陳品肇
時間:
2018-3-24 17:06
標題:
五則運算(一)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, 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-4-14 16:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, 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-4-14 16:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23 , y=87;
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-4-14 16:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int w=10, x=3;
cout<<"w="<<w<<", x="<<x<<endl;
cout<<"w+x="<<w+x<<endl;
cout<<"w-x="<<w-x<<endl;
cout<<"w*x="<<w*x<<endl;
cout<<"w/x="<<w/x<<endl;
cout<<"w%x"<<w%x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
譚詩澐
時間:
2018-4-14 16:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=13,y=10;
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<<"a"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳杏宜
時間:
2018-4-14 16:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=13,y=10;
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-5-26 14:47
#include<iostream> //input&output
#include<cstdlib> //standardliburary
using namespace std;
int main() //主函式
{
int x=3, y=2;
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-5-26 14:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=8;
int 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;
}
複製代碼
作者:
戴偉宸
時間:
2018-5-26 14:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5,y=6;
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