Date: Wed, 10 Nov 2004 15:30:28 -0600 (CST) From: Mark Jacobson To: 810-030-01@uni.edu Subject: [810-030-01] Hint for HW - Visual Basic .NET class... Please ask questions like this in class, if you wish. It will be very helpful to everyone! For i = 1 to Len("UNI Panthers") print 13 - i & " spaces " & i <---- Visual Basic 6.0 style PRINT Next i Hint for printing the Output: 12 spaces 1 U <---- 12 spaces 1st 11 spaces 2 N 10 spaces 3 I 9 spaces 4 8 spaces 5 P <----- 8 spaces, then 7 spaces 6 a 5th character 6 spaces 7 n of the 12. 5 spaces 8 t 4 spaces 9 h 3 spaces 10 e 2 spaces 11 r <---- only 2 spaces 1 spaces 12 s before 11th letter The 12th character has only 1 space in front of it. 13 - 12 = 1 space! ---- -- The 1st character has 13 - 1 or 12 spaces in front of it. --- - 13 - i gets SMALLER as i get LARGER, right? Wright!!! Mark