Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void Main(string[] args)
- {
- int health = 100;
- int damage = 40;
- int armorPrecent = 15;
- Console.WriteLine(health - (damage - (damage * armorPrecent / 100)));
- Console.ReadLine();
- }
Advertisement
Add Comment
Please, Sign In to add comment