Thread Closed

Programming with BASIC language.

 
Share Thread Thread Tools
Mar20-09, 08:59 PM   #1
 

Programming with BASIC language.


BASIC syntax, drawing flowcharts, QBASIC
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Galaxies fed by funnels of fuel
>> The better to see you with: Scientists build record-setting metamaterial flat lens
>> Google eyes emerging markets networks
Mar20-09, 09:01 PM   #2
 
This may be old but still important for freshers
Mar20-09, 09:03 PM   #3
 
I need to find some info on the QBASIC. I still find it hard.
Mar20-09, 09:06 PM   #4
 

Programming with BASIC language.


Is anyone there?
Mar20-09, 09:24 PM   #5
 
Relax...it's only been a few minutes since you started the topic. This is a discussion forum, not Twitter.

There is an awful lot of information out there concerning BASIC programming. Have you studied any of the "getting started" tutorials?

Google is your friend... http://www.google.com/search?q=getti...ic+programming

E.g., http://www.svatopluk.com/qbtutor/ or http://westcompsci.pima.edu/cis100/basic-00.html
Mar22-09, 10:41 PM   #6
 
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?
Mar23-09, 12:06 AM   #7
 
Mentor
Blog Entries: 9
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.
Mar28-09, 12:36 PM   #8
 
Quote by Integral View Post
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.
Mar28-09, 12:56 PM   #9
 
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
Mar28-09, 02:53 PM   #10
 
Thanks, Integral. Gnosis. Waht. My idea in BASIC programming is ok. But the issue lies on printing out the program and its output on paper.
Mar28-09, 03:35 PM   #11
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
Quote by nwadimoore View Post
Thanks, Integral. Gnosis. Waht. 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!
Mar29-09, 06:23 PM   #12
 
Thanks, CRGreathouse. U did well. It worked. But is there any way the input statement will appear on paper too.
Mar29-09, 07:32 PM   #13
 
Quote by nwadimoore View Post
Thanks, Integral. Gnosis. Waht. 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 occured. 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.
Thread Closed
Thread Tools


Similar Threads for: Programming with BASIC language.
Thread Forum Replies
Which programming language do you use? Academic Guidance 20
Which programming language is the best ? Programming & Comp Sci 15
c programming language Programming & Comp Sci 1
Consoles Programming Language Computing & Technology 7
Programming language in Biology Biology 10