Wednesday, October 22, 2014

how to write while loop in c#

Posted by Unknown  |  No comments


 if you want more related search please click here  
 please help to other  
 http://scriptquery.blogspot.in/  

 if you want more related search please click here  
 please help to other  
 http://scriptquery.blogspot.in/  
 using System;  
 namespace Loops  
 {  
   class Program  
   {  
     static void Main(string[] args)  
     {  
       /* local variable definition */  
       int a = 10;  
       /* while loop execution */  
       while (a < 20)  
       {  
         Console.WriteLine("value of a: {0}", a);  
         a++;  
       }  
       Console.ReadLine();  
     }  
   }  
 }   
 if you want more related search please click here  
 please help to other  
 http://scriptquery.blogspot.in/  

 if you want more related search please click here  
 please help to other  
 http://scriptquery.blogspot.in/  


3:34 AM Share:

0 comments:

Get updates in your email box
Complete the form below, and we'll send you the best coupons.

Deliver via FeedBurner
Proudly Powered by Blogger.
back to top