Facebook
From Crimson Frog, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 204
  1. for (int i = 1; i < 10; i++)
  2.                 for(int j = 1; j < 0; j++)
  3.                 {
  4.                     int wynik = i * j;
  5.                 }
  6.             Console.WriteLine("i + j = " + wynik);
  7.             Console.ReadLine();