Why No Output ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why No Output ?

using System; using System.Collections.Generic; namespace SoloLearn { class Program { static void Main(string[] args) { int numOfPlayers = Convert.ToInt32(Console.ReadLine()); List<int> scores = new List<int>(); int count = 0; while (count<numOfPlayers) { int score = Convert.ToInt32(Console.ReadLine()); //your code goes here scores.Add (score); } scores.Sort(); for (int x = 0; x<scores.Count; x++) Console.WriteLine (scores[x] + " "); } } }

7th Jul 2021, 1:49 AM
Anton Prozin
Anton Prozin - avatar
1 Answer
+ 3
while(condition){ //some code count++; }
7th Jul 2021, 2:09 AM
Simba
Simba - avatar