Board logo

標題: 五則運算(一) [打印本頁]

作者: 陳品肇    時間: 2018-8-25 11:09     標題: 五則運算(一)

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=10, y=3;
  7.     cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼
[attach]4693[/attach]
作者: 楊侍穎    時間: 2018-8-25 11:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  
  5. {
  6.     int x=12,y=5;   
  7.     cout<<"當x等於"<<x<<",y等於"<<y<<endl;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 湯郡一    時間: 2018-8-25 11:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int x=10, y=3;
  7.      cout<<"當x等於"<<x<<",y等於"<<y<<endl;
  8.      cout<<"x+y="<<x+y<<endl;
  9.      cout<<"x-y="<<x-y<<endl;
  10.      cout<<"x*y="<<x*y<<endl;
  11.      cout<<"x/y="<<x/y<<endl;
  12.      cout<<"x%y="<<x%y<<endl;
  13.     system ("pause");
  14.     return 0;
  15. }
複製代碼

作者: 鄭元富    時間: 2018-8-25 11:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=10 , y=3;
  7.    
  8.     cout <<"當x等於"<<x<<",y等於"<<y<<"時..."<<endl;
  9.     cout <<"x+y="<<x+y<<endl;
  10.     cout <<"x-y="<<x-y<<endl;
  11.     cout <<"x*y="<<x*y<<endl;
  12.     cout <<"x/y="<<x/y<<endl;
  13.     cout <<"x%y="<<x%y<<endl;
  14.    
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 陳潔歆    時間: 2018-8-25 11:46

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     int x=10,y=3;
  7.     cout<<"當x等於"<<x<<",y等於"<<y<<"時..."<<endl;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 田宇任    時間: 2018-8-25 11:47

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std ;
  4. int main()
  5. {
  6.     int x=10,y=15;
  7.     cout<<"當x等於"<<x<<"當y等於"<<y<<"時..."<<endl;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 蘇昱全    時間: 2018-8-29 16:49

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int x=7,y=3;
  7.     cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");   
  14.     return 0;
  15. }   
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2