Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- double water;
- int days, saturday, x;
- Console.WriteLine("Please enter the ammount of days that the astronaut will be missing:");
- days = int.Parse(Console.ReadLine());
- water = 3.8;
- water = (double)days * water;
- saturday = days / 7;
- Console.WriteLine("The astronaut is missing " + saturday + " saturdays and he has to take " + water + " liters with him.");
- Console.ReadKey();
- }
- }
- }
Add Comment
Please, Sign In to add comment