+ 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
3 Respostas
+ 6
You can use continue statement to skip something in a loop.
+ 5
Please show your attempt.
+ 2
Start
Input N,O
If N%(modulus)3=0 then output the number
else skip
Stop
**something of that sort