Ask your own question, for FREE!
Computer Science 12 Online
OpenStudy (anonymous):

I need a C++ command that reads in a single integer from cin. If the number is 7 , outpur "Lucky" if not output nothing. Not even sure what he's asking me to do? HELP?!

OpenStudy (anonymous):

You need to use the conditional operator in C++. cin >> a; // a is the integer you get from input (a == 7)?cout<<"lucky" : cout<<"";

OpenStudy (anonymous):

#include <iostream> using namespace std; int main() { int number; cout <<"Enter a number "<<endl; cin>> number ; if (number==7){ cout<< "Lucky" <<endl; } return 0; }

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!