Advertisement
tzvetkata

Game

Nov 22nd, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. using System;
  2.  
  3. namespace gane_info
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. string footbalTeam = Console.ReadLine();
  10. int numberOfGames = int.Parse(Console.ReadLine());
  11. int n = int.Parse(Console.ReadLine());
  12. int totalDuration = 0;
  13.  
  14. for (int i = 0; i<n; i++)
  15. {
  16. totalDuration += n;
  17. int mediumDuration = totalDuration / n;
  18. Console.WriteLine($"{footbalTeam} has played {totalDuration} minutes. Average minutes per game: {mediumDuration}");
  19. }
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement