Ask Question
13 April, 20:55

Write code that prints: usernum ... 2 1 blastoff! your code should contain a for loop. print a newline after each number and after blastoff!. ex: usernum

+3
Answers (1)
  1. 14 April, 00:44
    0
    You never said what language so I used C

    #include

    int main () {

    int a;

    for (a = 3; a > 0; a--) {

    printf ("%i / n", a); }

    printf (" Blast OFF!/n");

    return 0;

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write code that prints: usernum ... 2 1 blastoff! your code should contain a for loop. print a newline after each number and after ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers