返回列表 發帖

五則運算 (一)

本帖最後由 tonyh 於 2014-8-23 10:54 編輯
  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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     int z;
  9.     x=2;
  10.     y=1;
  11.     z=12;
  12.     cout<<"x=2,y=1,z=12"<<endl;
  13.     cout<<" x / y + x * y - ( z + x - y) - x / y + x * y - ( z + x - y) "<<endl;cout<< x / y + x * y - ( z + x - y) - x / y + x * y - ( z + x - y) <<endl;
  14.     cout<<" x / y - x * y - ( z + x - y) - x / y - x * y - ( z + x - y) "<<endl;cout<< x / y - x * y - ( z + x - y) - x / y - x * y - ( z + x - y) <<endl;
  15.     cout<<" x / y * x * y - ( z + x - y) - x / y * x * y - ( z + x - y) "<<endl;cout<< x / y * x * y - ( z + x - y) - x / y * x * y - ( z + x - y) <<endl;
  16.     cout<<" x / y / x * y - ( z + x - y) - x / y / x * y - ( z + x - y) "<<endl;cout<< x / y / x * y - ( z + x - y) - x / y / x * y - ( z + x - y) <<endl;
  17.     cout<<" x / y % x * y - ( z + x - y) - x / y % x * y - ( z + x - y) "<<endl;cout<< x / y % x * y - ( z + x - y) - x / y%x * y - ( z + x - y) <<endl;
  18.     system("pause");
  19.        return 0;
  20. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=12,y=9;
  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=26,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. }
複製代碼

TOP

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

TOP

返回列表