AlexRaynor

Untitled

Feb 6th, 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. static void Main(string[] args)
  2.         {
  3.             int health = 100;
  4.             float damage = 40f;
  5.             int armorPrecent = 15;
  6.  
  7.             Console.WriteLine(health - (damage - (damage / 100) * armorPrecent));
  8.  
  9.             Console.ReadLine();
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment