Ask Question
5 June, 12:44

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

+4
Answers (1)
  1. 5 June, 14:59
    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?
Get 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 & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers