Break and continue
Working on loops, im at the break and continue portion where it gives me multiple numbers for input and my code should find the largest and use it for output, the output should be “Sold:(highest input)” I do not have it set to insert the text becAuse i was more focusing on the output number then id plug in the text but its outputting all input numbers in one sequence using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { int x= 1; while(true) { int maxBid = Convert.ToInt32(Console.ReadLine()); if (maxBid == x) break; Console.Write(maxBid); } } } }