Use count number to control while loop : While « Statement « C# / CSharp Tutorial






using System; 
 
class MainClass {   
  public static void Main() { 
    int num; 
    int mag; 
 
    num = 435679; 
    mag = 0; 
 
    Console.WriteLine("Number: " + num); 
 
    while(num > 0) { 
      mag++; 
      num = num / 10; 
    }; 
 
    Console.WriteLine("Magnitude: " + mag); 
  }   
}
Number: 435679
Magnitude: 6








4.5.While
4.5.1.Simplest While loop
4.5.2.Use a while loop to display 1 to 5
4.5.3.Use count number to control while loop
4.5.4.Compute integer powers of 2 with while loop
4.5.5.Use a while loop to calculate and display the Fibonacci numbers less than 50