Saturday, April 26, 2025

C# - While & Do..While Loop

using System;

namespace LearnCS
{
    class Program
    {
        static void Main(string[] args)
        {

            int i = 0;

            while (i < 20) {
                Console.WriteLine(i);
                i++;
            }
           
        }
    }        
}
using System;

namespace LearnCS
{
    class Program
    {
        static void Main(string[] args)
        {

            int i = 0;

            do
            {
                Console.WriteLine(i);
                i++;
            } while (i < 25);
           
        }
    }        
}

 

No comments:

Post a Comment

Tkinter Introduction - Top Widget, Method, Button

First, let's make shure that our tkinter module is working ok with simple  for loop that will spawn 5 instances of blank Tk window .  ...