kirililchev3

Dragon

May 27th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int amountOfTeams = int.Parse(Console.ReadLine());
  10.             double dragonHatchingValue = double.Parse(Console.ReadLine());
  11.             for (int i = 1; i <= amountOfTeams; i++)
  12.             {
  13.                 int dragonHatched = int.Parse(Console.ReadLine());
  14.                 int teamMembersCount = int.Parse(Console.ReadLine());
  15.                 double teamPoints = dragonHatched / teamMembersCount;
  16.                
  17.             }
  18.            
  19.            
  20.  
  21.  
  22.         }
  23.  
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment