Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TrekkingMania
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int group = int.Parse(Console.ReadLine());
  10.  
  11. double musalaGroup = 0;
  12. double monblanGroup = 0;
  13. double klimandjaroGroup = 0;
  14. double K2Group = 0;
  15. double Everest = 0;
  16.  
  17.  
  18. for (int i = 0; i < group; i++)
  19. {
  20. int people = int.Parse(Console.ReadLine());
  21.  
  22. switch ()
  23.  
  24. }
  25.  
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement