Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ilya
  4. {
  5.     class MainClass
  6.     {
  7.         public static void Main (string[] args)
  8.         {
  9.             int hour = 2;
  10.             int count = 3; //начальное кол-во голов
  11.  
  12.             for(int i = 1; i <= hour; i++)
  13.             {
  14.                 int d = i == 1 ? 1 : 2 * (i - 1); //урон
  15.  
  16.                 count = (count - d) + 3;
  17.             }
  18.  
  19.             Console.WriteLine(count);
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement