Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need help with a format

Status
Not open for further replies.

ezell

Programmer
Jun 14, 2004
1
US
This is my program, i just need help with the format...
A=1
B=1
Print A, B
For I= 1 to 28
C=A+b
A=B
B=C
Print C
Next I


How would I get it to print in columns or rows to be seen on one screen? Thanks for any help.
 
If you are not over fussy about screen presentation, put a comma or semi-colon after 'PRINT C', so it prints across the screen. eg.

Print C;
 
Since all 3 variable change why not
print a;tab(10);b;tab(20);c
or if you want to show a&b before the manipulations print just them using the same format at the same location. Ed Fair
efair@atlnet.com

Any advice I give is my best judgement based on my interpretation of the facts you supply.

Help increase my knowledge by providing some feedback, good or bad, on any advice I have given.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top