2/25/2018

Programs Like Visual Logic File

48
Programs Like Visual Logic File 6,3/10 8172reviews
Programs Like Visual Logic File

Hello, I'm a college student taking Programming Design and Logic course. The class uses VisualLogic for it's main source of logic design and later we'll use VB.NET. I am working on a problem which isn't very diffucult, but I can't seem to get a grasp on it. It reads: ****** 'Write a program that reads in a list of positive intergers from the user until the user enters the value -1 as a sentinel. At that time, the program should display the largest value in the input list.'

Popular Alternatives to Logic Pro for Windows, Mac, Android, Linux, Web and more. Explore 67 apps like Logic Pro, all suggested and ranked by the AlternativeTo user community. Visual Logic Instructions and. Start a new Visual Logic program with File. The sample program should look something much like the graphic on the right.

Assimil Francese Senza Sforzo Libro Pdf La. I have no problem figuring the problem with averaging the numbers input, but I can't seem to recall how to make the program recognize the largest number entered, esp. Free T Shirt Iron On Programs To Help. When using a pre-test while loop because the program just keeps going until -1 is entered.

It doesn't seem that there is anything to compare it to, via an if statement. Bosch Al 1450 Dv Manually. I would love it is somebody could help me. Each time a user enters a positve integer you could compare it to a temporary maximum entered value variable or store.

So that when -1 is entered the maximum number can then be called from the temporary variable. Int Max_Num = 0 While (num entered!= -1) if num entered >Max_Num store num entered in Max_Num end while Display Max_Num PS: apologies for the quick & poor psuedo code This way Max_Num is only updated when it is greater than the previous maximum number, skipping if the newly entered number is less than the current value in Max_Num. Cheers, Steve. I've not heard of Visual Logic before but what I suggest you try to do is put an if statement within the while loop (if it is possible to use an IF statement). You need to setup a place to store a value (variable or something) that will act as store to keep the current maximum value entered. Then place an if statement within the while loop to check if the new entered value is higher than the value stored within the maximum value store.