Răspuns:
#include <iostream>
using std::cout, std::cerr, std::cin, std::endl;
int main() {
int notaElev;
cout << "Introdu nota la informatica a elevului (de ex 7) >> ";
cin >> notaElev;
if (notaElev <= 0) {
cerr << "Nota elevului trebuie sa fie un numar natural nenul!" << endl;
exit(EXIT_FAILURE);
}
if (notaElev >= 8) cout << "Foarte bine!" << endl;
else if (notaElev < 8 && notaElev >= 5) cout << "Bine!" << endl;
else cout << "Insuficient!" << endl;
return 0;
}