Click here to Skip to main content
15,886,077 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
When using "Structure Appearance" How can I fill in the missing lines of code from list: (a, b, c, d, & e) ??

Structure Appearance
	Dim height As Double   'inches
	Dim weight As Double   'pounds 
End Structure
 
Structure Person
	Dim name As String
	Dim stats As Appearance 
End Structure
 
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
	Dim personl, person2 As Person
	Dim person1 As String = Michael
	
 
**(missing lines –come from a, b, c, d, & e listed below) 
 

 
End Sub
	
 

	(a)	Give person, the name Michael
	(b)	Set Michael's height and weight to 71 and 190, respectively.
	(c)	Give person2 the name Jacob.
	(d)	Set Jacob's height and weight to 70 and 175, respectively.
	(e)	If one person is both taller and heavier than the other, display a sentence of the form 
Posted
Comments
H.Brydon 28-Apr-13 21:50pm    
You really need to do your own homework. If you have a programming question, feel free to ask, but you will find that questions of the form "please do this for me" won't work very well here.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900