Question: Hello, I have to write a program that reads 20 full notes and indicates the percentage of the sum of scores greater than 10 over
Hello, I have to write a program that reads 20 full notes and indicates the percentage of the sum of scores greater than 10 over the total sum of scores. I wrote this;
int note, cpt=0; float pourcentage;
for (int i = 0; i < 20; i++) { Console.WriteLine("Donnez-moi votre note"); note = int.Parse(Console.ReadLine()); if (note > 10) { cpt++; } } pourcentage = cpt / 20.0f * 100;
I do not think I have the good formula, thank you
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
