|
-
Nov 21st, 1999, 10:25 AM
#1
Thread Starter
Junior Member
I need a For Next loop that will calculate and display the square of the even numbers from 2 to 12.
-
Nov 21st, 1999, 10:41 AM
#2
this is easy! here ya go
' START:
For i = 2 To 12 Step 2
Print i ^ 2
Next i
' END:
-
Nov 22nd, 1999, 05:20 AM
#3
Thread Starter
Junior Member
Thanks so much!!
------------------
kazooie21
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|