fr0stn1k

C#Light3.1.3Kovylov

Feb 7th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. public static void Main(string[] args)
  2.         {
  3.             int health = 100;
  4.             int damage = 40;
  5.             int armorPrecent = 15;
  6.  
  7.             Console.WriteLine(health - (damage - (damage * armorPrecent / 100)));
  8.  
  9.             Console.ReadLine();
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment