我一直在試圖讓這個程序正常工作。它會進行編譯,但不是提示用戶輸入,而是指出不正確的東西。For Loop無法正常工作(C++)
提示:
向10當然標記(從0到100),之後狀態的用戶(在標籤中)多少是經過標記。
我的代碼:
#include <iostream>
#include <time.h>
#include <stdlib.h>
using namespace std;
int main()
{
int mark;
int passinggrades = 0;
for(int i = 0; i > 10; i++)
{
cout << "Enter Mark:";
cin >> mark;
while(mark >= 50)
{
passinggrades++;
}
}
cout << j << " of your marks were passing grades.";
return 0;
}
'cout << j <<「你的分數是通過分數的。」;'''''''也應該是''級數'。 – ctor
@ctor謝謝。在我沒有讀到這兩個錯誤之後。 – Kunal