Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.63 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApplication1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Kruh kruh1 = new Kruh();
  14.             Honoty(kruh1);
  15.             Console.WriteLine("Obvod: {0}", kruh1.Obvod());
  16.             Console.WriteLine("Obsah: {0}", kruh1.Obsah());
  17.  
  18.             Console.ReadKey();
  19.         }
  20.         static void Honoty(Kruh vypocet) {
  21.             Console.Write("Zadej velikost r: ");
  22.             vypocet.r = Convert.ToInt32(Console.ReadLine());
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement