返回列表 發帖

[作業] 跑馬燈 (三)

稍微改寫上一個程式, 使%的位置固定.

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {
  8.          if(i/5<=9)   
  9.          cout<<"  "<<i/5<<"%"<<endl;   
  10.          else if(i/5>9&&i/5<=99)   
  11.          cout<<" "<<i/5<<"%"<<endl;   
  12.          else  
  13.          cout<<i/5<<"%"<<endl;
  14.          system("cls");
  15.     }
  16.     cout<<"100% 完成!"<<endl;
  17.     system("pause");
  18.     return 0;  
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {
  8.          if(i/5<=9)   
  9.          cout<<"  "<<i/5<<"%"<<endl;   
  10.          else if(i/5>9&&i/5<=99)   
  11.          cout<<" "<<i/5<<"%"<<endl;   
  12.          else  
  13.          cout<<i/5<<"%"<<endl;
  14.          system("cls");
  15.     }
  16.     cout<<"100% 完成!"<<endl;
  17.     system("pause");
  18.     return 0;  
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {
  8.          if(i/5==9)   
  9.          cout<<"  "<<i/5<<"%"<<endl;   
  10.          else if(i/5>9 && i/5<=99)   
  11.          cout<<" "<<i/5<<"%"<<endl;   
  12.          else  
  13.          cout<<""<<i/5<<"%"<<endl;
  14.          system("cls");
  15.     }
  16.     cout<<"100% 完成!"<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {
  8.          if(i/5<=9)
  9.          {
  10.             cout<<"  "<<i/5<<"%"<<endl;
  11.             system("cls");        
  12.                     }
  13.          else if(i/5>=10||i/5<=99)
  14.          {
  15.             cout<<" "<<i/5<<"%"<<endl;
  16.             system("cls");      
  17.                     }
  18.     }
  19.     cout<<"100% 完成!";
  20.     system("pause");
  21.     return 0;  
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=300; i++)
  7.     {
  8.          if(i/3<=9)   
  9.          cout<<"  "<<i/3<<"%"<<endl;   
  10.          else if(i/3>9 && i/3<=99)   
  11.          cout<<" "<<i/3<<"%"<<endl;   
  12.          else  
  13.          cout<<i/3<<"%"<<endl;
  14.          system("cls");
  15.     }
  16.     cout<<"100% 完成!"<<endl;
  17.     system("pause");
  18.     return 0;  
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {
  8.          if(i/5<=9)   
  9.          cout<<"  "<<i/5<<"%"<<endl;   
  10.          else if(i/5>9&&i/5<=99)   
  11.          cout<<" "<<i/5<<"%"<<endl;   
  12.          else  
  13.          cout<<i/5<<"%"<<endl;
  14.          system("cls");
  15.     }
  16.     cout<<"100%  下載完成!"<<endl;
  17.     system("pause");
  18.     return 0;  
  19. }
  20.    
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {
  8.          if(i/5<=9)   
  9.          cout<<"  "<<i/5<<"%"<<endl;   
  10.          else if(i/5>9&&i/5<=99)   
  11.          cout<<" "<<i/5<<"%"<<endl;   
  12.          else  
  13.          cout<<i/5<<"%"<<endl;
  14.          system("cls");
  15.     }
  16.     cout<<"100% 完成!"<<endl;
  17.     system("pause");
  18.     return 0;  
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=1000; i++)
  7.     {
  8.          if(i/5<=9)   
  9.          cout<<"  "<<i/5<<"%"<<endl;   
  10.          else if(i/5>9&&i/5<=99)
  11.          {   
  12.          cout<<" "<<i/5<<"%"<<endl;
  13.          }   
  14.          else
  15.          {  
  16.          cout<<i/5<<"%"<<endl;
  17.          }
  18.          system("cls");
  19.     }
  20.     cout<<"100% 完成!"<<endl;
  21.     system("pause");
  22.     return 0;   
  23. }
複製代碼

TOP

返回列表