Advertisement
slemiba

L02-01-Szines Console

Sep 11th, 2022 (edited)
762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 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 ConsoleApp8
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.BackgroundColor = ConsoleColor.White;
  14.             Console.ForegroundColor = ConsoleColor.Black;
  15.             Console.Clear();
  16.  
  17.             Console.Write("Kérem a kör sugarát: ");
  18.             double r = double.Parse(Console.ReadLine());
  19.             double terulet = r * r * Math.PI;
  20.  
  21.             Console.WriteLine($"A {r} sugarú kör területe: {terulet}");
  22.            
  23.         }
  24.     }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement