Facebook
From Anorexic Stork, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 231
  1.   using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp25
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int Iloczyn = iloczyn(2, 3);
  14.             Console.WriteLine(Iloczyn);
  15.             wypisz("witaj");
  16.         }
  17.         static void wypisz(string tekst)
  18.         {
  19.             Console.WriteLine(tekst);
  20.         }
  21.         static int iloczyn(int liczba1, int liczba2)
  22.         {
  23.             int wynik = liczba1 * liczba2;
  24.             return wynik;
  25.         }
  26.     }
  27. }