Using break to exit a do-while loop : While « Language Basics « C# / C Sharp






Using break to exit a do-while loop

Using break to exit a do-while loop
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
// Using break to exit a do-while loop.   
 
using System; 
 
public class BreakDemo2 {  
  public static void Main() {  
    int i; 
 
    i = -10;     
    do { 
      if(i > 0) break; 
      Console.Write(i + " "); 
      i++; 
    } while(i <= 10); 
  
    Console.WriteLine("Done");  
  }  
}

           
       








Related examples in the same category

1.Continue in while
2.Compute the order of magnitude of an integer Compute the order of magnitude of an integer
3.Compute integer powers of 2Compute integer powers of 2
4.Display the digits of an integer in reverse orderDisplay the digits of an integer in reverse order
5.While TesterWhile Tester
6.Do While TesterDo While Tester
7.While SignalWhile Signal
8.While loop to display 1 to 5While loop to display 1 to 5
9.while loop to calculate and display the Fibonacci numbers less than 50while loop to calculate and display the Fibonacci numbers less than 50
10.a do...while loopa do...while loop
11.While true testWhile true test
12.Simplest do whileSimplest do while
13.Simplest while