Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace p
- {
- class Program
- {
- public static void Main(string[] args)
- {
- float prixHeure, prixTotal;
- Console.WriteLine("Permis [A] ou [B] ?");
- string permis = (Console.ReadLine());
- if (permis == "A")
- {
- prixHeure = 45;
- }
- else
- {
- prixHeure = 50;
- }
- prixTotal = prixHeure;
- Console.WriteLine("Quels jours vas-tu y aller :\nlundi\nmardi\nmercredi\njeudi\nvendredi\nsamedi");
- string jour = (Console.ReadLine());
- if (jour == "lundi" || jour == "samedi")
- {
- prixTotal = prixHeure;
- }
- else
- {
- if (jour == "mercredi" || jour == "vendredi")
- {
- prixTotal = prixTotal - (prixHeure * 0.2f);
- }
- else
- {
- if (jour == "mardi")
- {
- prixTotal = prixTotal - (prixHeure * 0.1f);
- }
- else
- {
- if (jour == "jeudi")
- {
- prixTotal = prixTotal - (prixHeure * 0.05f);
- }
- }
- }
- }
- prixTotal = prixTotal - (prixTotal * 0.08f);
- Console.WriteLine("Le prix de la séance sera de {0} euros",prixTotal);
- Console.ReadKey(true);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment