返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. //宣告   
  7. int a=0;
  8. int b=0;
  9. if(a>b)
  10. {
  11. cout<<"a>b"<<"\r\n";
  12. }
  13. else if(a<b)
  14. cout<<"a<B"<<"\r\n";
  15. else
  16. {
  17. cout<<"a=b"<<"\r\n";   
  18. }     
  19. cout<<"請輸入a的值";
  20. cin>>a;
  21. cout<<"請輸入b的值";
  22. cin>>b;
  23. cout<<"a="<<"\r\n";
  24. cout<<"b="<<"\r\n";
  25. cout<<"a=b"<<"\r\n";
  26. system("pause");
  27. return 0;






  28. }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using  namespace std;
  4.    int main()
  5.       
  6. {     
  7.   int a=0;
  8. int b=0;
  9. cout<<"請輸入a的值"<<endl;
  10. cin>>a;
  11.   cout<<"請輸入b的值"<<endl;
  12. cin>>b;
  13. if (a>b)
  14. {
  15.         cout<<"a>b"<<endl;
  16.         }
  17.         else if(a<b)
  18.         {
  19.          cout<<"a<b"<<endl;
  20.          }
  21.          else
  22.          {
  23.              cout<<"a=b"<<endl;
  24.              }system(pause
  25.   
  26.    
  27.       
  28.       
  29.       
  30.    
  31.   
  32.   
  33.   
  34.   
  35.   
  36.   
  37.   
  38.   
  39.   
  40.   
  41.   
  42.   
  43.   
  44.   
  45.   
  46.   
  47.   
  48.   
  49.   
  50.   
  51.   
  52.      
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using  namespace std;
  4.    int main()
  5.       {
  6. for(int i=1;i<10;i++)
  7. {
  8.          cout<<"第"<<i<<"名"<<endl;
  9. }   
  10.       
  11.   
  12.    system("pause");
  13.       
  14.       
  15.       
  16. }
  17.   
  18.   
  19.   
  20.   
  21.   
  22.   
  23.   
  24.   
  25.   
  26.   
  27.   
  28.   
  29.   
  30.   
  31.   
  32.   
  33.   
  34.   
  35.   
  36.   
  37.   
  38.      
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int o=0;
  7.     int l=0;
  8.     cout<<"請輸入紅隊的分數"<<endl;
  9.     cin >> l ;
  10.     cout<<"請輸入綠隊的分數"<<endl;                  
  11.     cin >> o ;
  12.     if(l>o)                  
  13.     {
  14.     cout<<"紅隊獲勝"<<endl;                    
  15.     }           
  16.     else if(l<o)                    
  17.     {
  18.     cout<<"綠隊獲勝"<<endl;                    
  19.     }         
  20.     else if(l=o)                    
  21.     {
  22.     cout<<"雙贏 恭喜"<<endl;                    
  23.     }                          
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

返回列表