Wyo VB Ch. 1 Worksheet #3 Name -

1. Write a program that displays your first and last names on the same line of output with a single blank space between them. Do not use any variables.

 

 

 

 

 

2. Do #1 above but use two appropriately named string variables in the program.

 

 

 

 

 

 

3. Write a program that displays the following output. Use 2 or more string variables. A single blank space must appear between "Wyo" and "Area".

 

Wyo Area
Spartans



 






 

 

 

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.