Posts by Rui Febra • 11 points
1 post
-
-1
votes1
answer88
viewsQ: Find the largest number in a text file
I’m trying to make a program that reads a text file and tells me the highest number in it. Here’s what I got from the code: while (sLine != null) { sLine = objReader.ReadLine(); if (sLine != null)…