Advertisement
spasnikolov131

Untitled

Apr 22nd, 2022
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Best_Player
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int food = int.Parse(Console.ReadLine());
  10. double grams = food * 1000;
  11. int totalFood = 0;
  12.  
  13. while(true)
  14. {
  15. string line = Console.ReadLine();
  16. if (line == "Adopted")
  17. {
  18. break;
  19. }
  20. else
  21. {
  22. totalFood += line;
  23. }
  24. }
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement