Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace b
- {
- class Program
- {
- public static void Main(string[] args)
- {
- int total;
- Console.WriteLine("Entrer note 1 : ");
- int priseDeNote = int.Parse(Console.ReadLine());
- total = priseDeNote;
- Console.WriteLine("Entrer note 2 : ");
- priseDeNote = int.Parse(Console.ReadLine());
- total = total + priseDeNote;
- Console.WriteLine("Entrer note 3 : ");
- priseDeNote = int.Parse(Console.ReadLine());
- total = total + priseDeNote;
- Console.WriteLine("Entrer note 4 : ");
- priseDeNote = int.Parse(Console.ReadLine());
- total = total + priseDeNote;
- float moyenne = total / 4F;
- Console.WriteLine("Votre moyenne est de : " + moyenne + " sur 20.");
- Console.ReadKey(true);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment