Guest User

Untitled

a guest
Jun 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace ConsoleApplication1
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             int x = 0;
  12.             for (int i = 0; i < 5; i++)
  13.             {
  14.                 for (int j = 0; j < 5; j++)
  15.                 {
  16.                     x++;
  17.                     Console.WriteLine(x);
  18.                 }
  19.             }
  20.             Console.ReadLine();
  21.         }
  22.  
  23.     }
  24. }
Add Comment
Please, Sign In to add comment