How Can You Print Your BASIC Program and Its Output?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
12 replies · 4K views
nwadimoore
Messages
8
Reaction score
0
BASIC syntax, drawing flowcharts, QBASIC
 
Physics news on Phys.org
This may be old but still important for freshers
 
I need to find some info on the QBASIC. I still find it hard.
 
Last edited by a moderator:
Wow! Thanks, Pantaz. I think I'm doing well with the programming, but my headache lies on how to print the output on a paper. So far, if i try to print, only the program is print out. I want both the program and output to print on paper. How possible is it?
 
Wow, Qbasic! I am amazed that this is still in use anywhere.

To print from a program

10 Print "Hello world"


Isn't that the universal first program to write in basic?

Suppose you have some variable x.

10 Print x


you can combine strings and variables:

10 Print "This is x "; x

The semi colon means that no space it left between the previous element printed. If you use a comma then it will space out to the next tab field.

10 for i = 1 to 10
20 print i
30 next i

Outputs
1
2
3
4
5
6
7
8
9
10

10 For i = 1 to 10
20 print i;
30 next i

Outputs
12345678910

That should get you started.
 
Integral said:
Wow, Qbasic! I am amazed that this is still in use anywhere.

I still use GWBasic from time to time, which is even older than QBasic. I was working with computers when GWBasic was first introduced. It doesn't seem like all that long ago and yet, it's been roughly 3 decades. Time sure flies when you're having fun. :wink:
 
I still have "Qbasic in 21 days" picking up dust on the bookshelf. I believe the latex complier that came out eons ago was QB 4.5, try googling that. The compiler also has a comprehensive syntax library.

Here's some more code

CLS
SCREEN 12

WINDOW (-10,-10)-(10,10)

FOR R = 0 To 10

CIRCLE (0,0), R

NEXT R
 
Thanks, Integral. Gnosis. what. My idea in BASIC programming is ok. But the issue lies on printing out the program and its output on paper.
 
nwadimoore said:
Thanks, Integral. Gnosis. what. My idea in BASIC programming is ok. But the issue lies on printing out the program and its output on paper.

Use LPRINT instead of PRINT.

My decades-dormant QBasic comes in handy again!
 
Thanks, CRGreathouse. U did well. It worked. But is there any way the input statement will appear on paper too.
 
nwadimoore said:
Thanks, Integral. Gnosis. what. My idea in BASIC programming is ok. But the issue lies on printing out the program and its output on paper.

I'm sorry, I overlooked your need to print.

If you simply need to print everything that's visible on the screen, trying pressing the "Print Screen/SysRq" key while the printer is on-line. It generally takes at least two presses of this key (sometimes a 3rd press) for printing to commence, as each press of the key typically only fills half of the printer's paper (captures the entire screen, but that only fills half of the paper) and it's only buffered, not printed until a whole page worth of screen captures have occurred. So press the key once, then list another full screen of your program, then press the key again and the printer will typically begin printing everything from the two screens that you captured.

In some cases, I have seen it require a 3rd press of the key, but usually only two key presses prints out a page.