返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     for (int i = 0; i < 20; i++)
  8.     {
  9.         cout<< rand() % 7 - 1.5 <<endl;
  10.     }
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum = 0;
  7.     for(int i = 333;i < 1000;i+=3)
  8.     {
  9.         sum += i;
  10.     }
  11.     cout <<"333~999間所有3的倍數總和為: "<< sum << endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

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

TOP

17 WPM
(words per minute)
Keystrokes        (76 | 0) 76
Accuracy        95%
Correct words        18
Wrong words        0

TOP

18 WPM
(words per minute)
Keystrokes        (88 | 0) 88
Accuracy        96.67%
Correct words        19
Wrong words        0

TOP

17 WPM
(words per minute)
Keystrokes        (86 | 0) 86
Accuracy        98.85%
Correct words        17
Wrong words        0

TOP

16 WPM
(words per minute)
Keystrokes        (82 | 0) 82
Accuracy        95.35%
Correct words        15
Wrong words        0

TOP

返回列表