+ 1
How do I go through the numbers from 1 to 100 in C #?
What code can I use to cycle through the numbers from 1 to 100?
2 odpowiedzi
+ 7
for(int i = 1; I <=100; i++)
{
Console.WriteLine(i);
}
+ 3
Use a for loop;
https://www.sololearn.com/learning/2596/