Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 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 ConsoleApplication17
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.Write("Kérek egy számot : ");
  14. int a = byte.Parse(Console.ReadLine());
  15. Console.Write("Kérek mégegy számot: ");
  16. int b = byte.Parse(Console.ReadLine());
  17. if (a > b){
  18. int nagy = a;
  19. }else{
  20. int nagy = b;
  21. Console.WriteLine("A nagyobb szam: " + nagy +".");
  22. Console.ReadKey();
  23. }
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement