✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який буде результат виконання?
#include <iostream>
int main() {
int mark = 85;
if (mark >= 90) {
std::cout << "A";
} else if (mark >= 75) {
std::cout << "B";
} else if (mark >= 60) {
std::cout << "C";
} else {
std::cout << "D";
}
}