Wyo VB Ch. 1 Worksheet #2 Name -

1. Write a complete Visual Basic program that displays your current school year class schedule. Each class name, period number, and teacher name should appear on a separate line separated by a blank space. You do not have to use string variables but you may if you wish.

Period 1 Basic Programming Mr. Minich
Period 2 Weight Training Mr. Ferrandino
etc.

 






 

 

 

2. Write a program that produces the same output as #1 above but make sure that 5 blank spaces are placed between each period #, class title, and teacher name entry. Do this program by using a string variable named strSpacer that is set equal to a string literal of 5 blank spaces as in:

strSpacer = "     "

Period 1      Basic Programming     Mr. Minich
Period 2     Weight Training    Mr. Ferrandino
etc.