VelizarAvramov

FormatCode

Mar 22nd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2.  
  3.     class HoribleCode
  4.     {
  5.  
  6.         static void Main()
  7.         {
  8.             Console.WriteLine("Hi, I am horribly formatted program");
  9.             Console.WriteLine("Numbers and squares:");
  10.             for (int i = 0; i < 10; i++)
  11.             {
  12.                 Console.WriteLine(i + " --> " + i * i);
  13.             }
  14.         }
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment