c# loop

55

c# for loop -

for(i = 2; i < 100; i*=2) 
 {
    Console.Write(i + " ");
 }
 Console.Readkey(); 

Comments

Submit
0 Comments