+ 7
what is output
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { int x = 20; for ( ; x > 0; x -= 5) { Console.WriteLine(x); } } } }
5 Respuestas
+ 8
vote bhi do
+ 3
Output is: 20 15 10 5
+ 1
i think 5 is that true?
+ 1
TurtleShell ah you are right
that is my answer now XD
- 1
Where did you get 5 from? Lol