Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 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 ConsoleApp2
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.             int uron = 100;
  15.             int zhizn = 200;
  16.             int brony;
  17.             uron = uron - ((uron / 100) * 25);
  18.             brony = zhizn - uron;
  19.             Console.WriteLine($"После удара, у вас осталось {brony} жизни");
  20.             Console.ReadKey();
  21.  
  22.  
  23.  
  24.         }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement