標題:
五則運算(一)
[打印本頁]
作者:
陳品肇
時間:
2018-8-25 11:09
標題:
五則運算(一)
#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;
}
複製代碼
[attach]4693[/attach]
作者:
楊侍穎
時間:
2018-8-25 11:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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-25 11:44
#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-8-25 11:44
#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-8-25 11:46
#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-8-25 11:47
#include<iostream>
#include<cstdlib>
using namespace std ;
int main()
{
int x=10,y=15;
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-29 16:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=7,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://istak.org.tw/seed/)
Powered by Discuz! 7.2