Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp1
- {
- class Program
- {
- static void Main(string[] args)
- {
- int amountOfTeams = int.Parse(Console.ReadLine());
- double dragonHatchingValue = double.Parse(Console.ReadLine());
- for (int i = 1; i <= amountOfTeams; i++)
- {
- int dragonHatched = int.Parse(Console.ReadLine());
- int teamMembersCount = int.Parse(Console.ReadLine());
- double teamPoints = dragonHatched / teamMembersCount;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment