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