+ 1
This is about logic NOT code coach
#include <iostream> using namespace std; int main() { int vision; cin >> vision; int height; cin >> height; //your code goes here if(vision<100 && height<80){ cout<<"failed"<<endl; } else { cout<<"passed"<<endl; } return 0; } This code worked but it is different than the solution given in the code coach itself Can this also be considered
2 Answers
+ 1
I didn't understand the question