Advertisement
Kuncavia

DemoReadConsole

Aug 14th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. using System;
  2.  
  3. class DemoReadConsole
  4. {
  5.     static void Main()
  6.     {
  7.         // Взимаме страната А
  8.         Console.WriteLine("Въведи страна");
  9.         int sideA = int.Parse(Console.ReadLine()); // Каквото напишем тук, се смята за sideA
  10.         // Калкурираме странта
  11.         int area = sideA * sideA;
  12.         // Печат в конзолата
  13.         Console.WriteLine("Страната е:");
  14.         Console.WriteLine(area);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement