Board logo

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

作者: 陳品肇    時間: 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

  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-4-14 16:40

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int x=23 , y=87;
  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.   
  14.   system("pause");
  15.   return 0;
  16. }




  17.      
複製代碼

作者: 陳柏霖    時間: 2018-4-14 16:40

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

作者: 譚詩澐    時間: 2018-4-14 16:41

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       int x=13,y=10;
  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<<"a"<<endl;
  13.       system("pause");
  14.       return 0;
  15. }
複製代碼

作者: 陳杏宜    時間: 2018-4-14 16:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=13,y=10;
  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-5-26 14:47

  1. #include<iostream>   //input&output
  2. #include<cstdlib>  //standardliburary
  3. using namespace std;
  4. int main()  //主函式
  5. {
  6.     int x=3, y=2;
  7.    cout<<"x+y= ;" <<x+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.     system("pause");
  13.     return 0;
  14. }      
複製代碼

作者: 戴安利    時間: 2018-5-26 14:48

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=8;
  7.     int y=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.     system("pause");
  15.     return 0;
  16.    
  17. }
複製代碼

作者: 戴偉宸    時間: 2018-5-26 14:52

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





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