Write a program that takes N numbers as input and outputs the numbers from N to 0, skipping the ones that are multiple of 3. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Write a program that takes N numbers as input and outputs the numbers from N to 0, skipping the ones that are multiple of 3.

help me with thia

28th Jan 2022, 3:29 PM
Hirdesh Prajapati
Hirdesh Prajapati - avatar
3 Answers
+ 6
You can use continue statement to skip something in a loop.
28th Jan 2022, 3:58 PM
Simba
Simba - avatar
+ 5
Please show your attempt.
28th Jan 2022, 3:45 PM
JaScript
JaScript - avatar
+ 2
Start Input N,O If N%(modulus)3=0 then output the number else skip Stop **something of that sort
28th Jan 2022, 5:27 PM
Ongora David Otieno