Flow Control Learn programming with Visual Basic (VB.net) exercises

 Visual Basic (VB.net) exercises

 69 Positive and negative
Write a Visual Basic (VB.net) program to get a number and answer whether it is positive or negative....
 67 Multiply if not zero
Write a Visual Basic (VB.net) program to ask the user for a number; if it is not zero, then it will ask for a second number and display their value; o...
 61 Divide if not zero
Write a Visual Basic (VB.net) program to ask the user for two numbers, and show their division if the second number is not zero; otherwise, it will di...
 99 Divide if not zero (Using else)
Create a version of the previous program, using "else"...
 72 Greatest of three numbers
Write a Visual Basic (VB.net) program to get three numbers from the user and display the greatest one....
 64 Repeat until 0
Create a Visual Basic (VB.net) program to ask the user for a number "x" and display 10*x. It must repeat until the user enters 0 (using "while")....
 70 Repeat until 0 (Use Do While)
Create a Visual Basic (VB.net) program to ask the user for a number "x" and display 10*x. It must repeat until the user enters 0 (using "do-while")....
 72 While + Counter
Create a Visual Basic (VB.net) program to display the numbers 1 to 10 on screen, using "while"....
 92 Multiplication table (use while)
Write a Visual Basic (VB.net) program to ask the user for a number and display its multiplication table, using a "while"...
 59 Odd numbers descending
Create a Visual Basic (VB.net) program to display on the screen the odd numbers from 15 to 7 (downwards), using "while"...
 72 Sum numbers
Write a Visual Basic (VB.net) program to ask the user for an undetermined amount of numbers (until 0 is entered) and display their sum, as follows: ...
 67 Two negative numbers
Create a Visual Basic (VB.net) program to accept two numbers from the user and answer if both are negative or not....
 59 One or two negative numbers
Create a Visual Basic (VB.net) program to accept two numbers from the user and answer if both are negative, if only one is, or if none of them is....
 63 Multiples
Create a Visual Basic (VB.net) program to write on screen the numbers from 1 to 500 that are multiples of 3 and also multiples of 5 (hint: use the rem...
 58 Number repeated
Write a Visual Basic (VB.net) program which asks for a number and an amount, and shows that number repeated as many times as the user has indicated, a...
 63 Password
Write a Visual Basic (VB.net) program to ask the user for his/her login and his/her password (both must be integer numbers) and repeat it as many time...
 82 Password V2
Write a Visual Basic (VB.net) program to ask the user for his/her login and his/her password (both must be integer numbers), until the entered login i...
 71 Many divisions
Write a Visual Basic (VB.net) program to ask the user for two numbers and show their division and the remainder of the division. It will warn if 0 is ...
 75 Several multiplication tables, (use do while)
Display the multiplication tables from 2 to 6, using nested "do...while"....
 81 Square
Write a Visual Basic (VB.net) program which asks for a number and a width, and displays a square of that width, using that number for the inner symbol...
 123 Break & continue
Create a Visual Basic (VB.net) program to write the even numbers from 10 to 20, both included, except 16, in 3 different ways: - Incrementing 2 in ...
 57 Rectangle V2
Write a Visual Basic (VB.net) program which asks for a number, a width and a height and displays a rectangle of that width and that height, using that...
 70 Repetitive structures
Create a Visual Basic (VB.net) program to ask the user for two numbers and display the numbers between them (both included), three times: using "for",...
 61 Digits in a number
Create a Visual Basic (VB.net) program to calculate how many digits has a positive integer (hint: it can be done by dividing by 10 several times). If ...
 66 Hollow square
Write a program which asks for a symbol, a width and displays a hollow square of that width, using that number for the outer symbol, as in this exampl...
 59 Product
Create a Visual Basic (VB.net) program which asks the user for two integer numbers and displays their multiplication, but not using "*". You must use ...
 68 Absolute value
Write a Visual Basic (VB.net) program to calculate (and display) the absolute value of a number x: if the number is positive, its absolute value is ex...
 57 Hollow rectangle
Write a program which asks for a symbol, a width and a height and displays a hollow rectangle of that width and that height, using that number for the...
 59 Statistics
Exercise 2.29: Statistics Objetive: Write a program to compute several basic statistical operations: it will accept numbers from the user and sho...
 108 Switch
Create a program in Visual Basic (VB.net) to display the "text mark" corresponding to a certain "numeric mark", using the following equivalence: 9....
 94 Conditional operator, positive & smaller
Create a Visual Basic (VB.net) program which asks the user for two numbers and answers, using the conditional operator (?), the following: - If the...
 77 Prime number
Write a Visual Basic (VB.net) program which asks the user for an integer number and answers if it is a prime number or not....
 56 Give change
Create a Visual Basic (VB.net) program to return the change of a purchase, using coins (or bills) as large as possible. Assume we have an unlimited am...
 83 Exceptions
Create a Visual Basic (VB.net) program to ask the user for two numbers and display their division. Errors must be trapped using "try..catch"....