#include <iostream>
using namespace std;

int main()
{
int mark = 90;

if (mark < 50) {
cout << "You failed." << endl;
}
else {
cout << "You passed." << endl;
}

return 0;
}





Что выведет эта программа?
C++​
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.