25/03/2021, 21:23
mọi người dịch đoạn C này sang C++ cho em đc k ạ
mọi người dịch đoạn C này sang C++ cho em đc k ạ
#include <iostream>
using namespace std;
int main()
{
float mark; int countPass, countFail; bool stop = false;
while (stop == false){
cin >> mark;
if (mark == -1) stop = true;
else{
if (mark >= 5) countPass++; else countFail++;
}
}
cout << "\n So hoc sinh dau la: " << countPass << endl;
cout << "\n So hoc sinh rot la: " << countFail << endl;
if (countPass / (countPass + countFail) >= 0.8) cout << "Co thuong" << endl;
return 0;
}