Write a cout statement that prints the value of a conditional expression. The conditional expression should determine whether the value of the score variable is equal to 100. If so, it should print "Perfect", otherwise it should print "Nice try".

Respuesta :

Answer:

#include <iostream>

using namespace std:

int main (){

int score=0;

cin>>score;

if (score==100)

cout << "Perfect";

else

cout <<"Nice Try";

return 0;

}

Explanation:

ACCESS MORE