Write code that prints: Ready! numVal ... 2 1 Blastoff!Your code should contain a for loop. Print a newline after each number and after each line of text Ex: numVal = 3 outputs: Ready! 3 2 1 Blastoff!
Extracted text: 1 #include 2 using namespace std; 3 4 int main() { int numVal; int i; 6. 7 8. cin > numVal; 9. 10 11 12 return 0; 13 }
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here