Facebook
From Innocent Hamster, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 256
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp38
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.            Console.WriteLine (ObliczPole(10));
  14.             //int temp = ObliczPole(10);
  15.             //Consol.Writeline(temp);
  16.             Console.ReadLine();
  17.  
  18.         }
  19.         static public int ObliczPole (int a)
  20.         {
  21.             return a * a;
  22.             //Albo morzna zrobić terz tak
  23.             //int temp = a*a ;
  24.             //return temp;
  25.         }
  26.     }
  27.  
  28. }