C# for loop  Edit
 Edit
                    
                    
                    Program
using System;
namespace Hello_world
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 0;
            for(int b=10; b>a;b--)
            {
                Console.WriteLine("    "  b);
            }
        }
    }
}
                     
            
         
                         11 January 2021 |
 11 January 2021 |  3263
3263