Advertisement
adaxx11

Untitled

Feb 13th, 2021
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. /******************************************************************************
  2.  
  3. Online C# Compiler.
  4. Code, Compile, Run and Debug C# program online.
  5. Write your code in this editor and press "Run" button to execute it.
  6.  
  7. *******************************************************************************/
  8.  
  9. using System;
  10. class HelloWorld {
  11. static void Main() {
  12. Console.WriteLine("Witaj w konsolowym świecie League of Legends");
  13. Console.WriteLine("Jestem Twisted Fate- mistrz kart, wylosowałem dla Ciebie jedną z moich kart żeby mnie pokonać musisz ją odgadnąć(1-10)");
  14. Console.WriteLine("Masz na to 7 prób");
  15.  
  16. Random losowa=new Random();
  17.  
  18. int doZgadniecia=losowa.Next(1,11);
  19.  
  20. int liczbaProb=7;
  21.  
  22. bool czyKoniec=false;
  23.  
  24. while(czyKoniec==false){
  25.  
  26. Console.WriteLine($"Pozostała liczba prób: {liczbaProb}");
  27. Console.WriteLine("Podaj liczbę:");
  28.  
  29. // "5"-->5 5+5=10 "5"+"5"="55"
  30. int wprowadzonaLiczba=int.Parse(Console.ReadLine());
  31.  
  32. if(wprowadzonaLiczba>doZgadniecia){
  33.  
  34. Console.WriteLine("Podałeś za dużą liczbę!");
  35. liczbaProb=liczbaProb-1;
  36. //liczbaProb--;
  37. //liczbaProb-=1;
  38.  
  39. }
  40. else if(wprowadzonaLiczba<doZgadniecia){
  41.  
  42. Console.WriteLine("Podałeś za małą liczbę!");
  43. liczbaProb=liczbaProb-1;
  44.  
  45. }
  46. else{
  47. Console.WriteLine("Gratulacje! Udało Ci się mnie pokonać");
  48. czyKoniec=true;
  49.  
  50. }
  51.  
  52. if(liczbaProb==0){
  53.  
  54. Console.WriteLine("Skończyły Ci się próby!");
  55. czyKoniec=true;
  56.  
  57. }
  58.  
  59. }
  60.  
  61. }
  62. }
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement