Hissing Worms
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Hissing Worms

Welcome all members.
 
HomeLatest imagesSearchRegisterLog in
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Latest topics
» IMPORTANT ANNOUNCEMENT
Standard Text Program(BASIC) EmptyMon Oct 26, 2020 6:45 pm by Darkprism

» KM / Mitsu's New site
Standard Text Program(BASIC) EmptySun Jan 05, 2014 2:56 am by Darkprism

» I'm back.
Standard Text Program(BASIC) EmptyWed Oct 09, 2013 2:54 am by Stadd

» So yeah
Standard Text Program(BASIC) EmptySun Jan 27, 2013 3:13 am by Darkprism

» Forummotion Chatbox on Every Page Guide!
Standard Text Program(BASIC) EmptyMon Jul 30, 2012 8:14 pm by Diggy

Top posters
Gr33n
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
Mitsukaru
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
Neverwinter XIII
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
HaZe
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
Zeph
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
Scrubby
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
Avogadro
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
Darkprism
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
Diggy
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
LolICU
Standard Text Program(BASIC) I_vote_lcapStandard Text Program(BASIC) I_voting_barStandard Text Program(BASIC) I_vote_rcap 
SOTW WINNER(S)
SOTW #4 WINNER(S)

Winner: ZephyR

Partners
TheForumsNG NecroAccuracy PaidTheFastest

EWW


 

 Standard Text Program(BASIC)

Go down 
4 posters
AuthorMessage
Mitsukaru
Main Administrator
Mitsukaru


Admin '10 : Standard Text Program(BASIC) Admino10
GFX Crew '10 : Standard Text Program(BASIC) Gfxoft10
Recruiter '10 : Standard Text Program(BASIC) Recrui10
Posts : 1328
HWPoints : 1548
Join date : 2008-06-14

Standard Text Program(BASIC) Empty
PostSubject: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptyMon Jul 12, 2010 3:30 am

I made this when I was 12 so it's a little glitchy.

Code:
print "hello i am going to show you a couple things. First of, enter in your name."
input HELLO$
input "Hello ";HELLO$;". Do you want to do a math problem? (y/n) "; reply$
reply$ = UPPER$(reply$)
reply$ = LEFT$(reply$,1)
IF reply$="Y" THEN [problem]
IF reply$<>"Y" THEN [favnum]
[problem]
print "what is 5000 plus 5000?"
input X
if X <> 10000 THEN PRINT "SHAME ON YOU THAT ASWER IS INVALID"
IF X = 10000 THEN PRINT "GOOD JOB!!!!!"
PRINT "Here is another one"
PRINT "WHAT IS 5001 PLUS 4999?"
INPUT Z
if Z <> 10000 THEN PRINT "SHAME ON YOU THAT ASWER IS INVALID"
IF Z = 10000 THEN PRINT "GOOD JOB!!!!!"
[favnum]
print "WHAT IS YOUR FAVORITE NUMBER? (1 to 5000)"
[again]
INPUT FAVNUM
IF FAVNUM = 0 OR FAVNUM > 5000 THEN [sorry] else goto [factor]
[factor]
FOR XX = 1 TO FAVNUM
IF INT(FAVNUM/XX) = FAVNUM/XX THEN PRINT XX;" IS A FACTOR."
NEXT XX
goto [name]
[sorry]
PRINT "I am sorry, but you cannot use that number. Please try again."
goto [again]

[name]

d$ = ""
PRINT "Type your full name or a SHORT sentence and press ENTER"
INPUT name$

' Do over if too many letters fo screen
if len(name$)>79 or len(name$)<6 then [wrong]
goto [okname]

[wrong]
print "I am sorry that is too many letters please try again"
print "or"
print "You have to enter in 6 or more letters"
goto [name]
[okname]
d = int((80-len(name$))/2)'center on screen
for g = 1 to d

d$ = d$;" "
next g
print
input "Hit ENTER when you are ready";c$
print
print

for c = 1 to len(name$)
space$ = space$ + "  "
print "    ";space$;name$
for dlay = 1 to 10000
next dlay
next c

For c = 1 to len(name$)
space$ = right$(space$,len(space$)-2)
PRINT "    ";space$;name$
for dlay = 1 to 10000
next dlay
next c
PRINT


For c = 1 to len(name$)
Print d$;right$(name$,c)
for dlay = 1 to 10000
next dlay
next c
PRINT


For c = len(name$) to 1 step-1
Print d$;left$(name$,c)
for dlay = 1 to 10000
next dlay
next c
PRINT

PRINT "    ";
For c = 1 to len(name$)
PRINT MID$(name$,c,1);
FOR DLAY = 1 to 10000
NEXT DLAY
NEXT c

PRINT
PRINT "Neat, huh?"
input "Want to do another? (y/n) "; ans$
input yesorno$
ans$ = upper$(ans$)
ans$ = left$(ans$,1)
if ans$ = y than [name]
[namecool]

e$ = ""
PRINT "Type your full name or a SHORT sentence and press ENTER"
INPUT names$


if len(names$)>79 or len(names$)<6 then [wrongs]
goto [oknames]

goto [name]
[wrongs]
print "I am sorry that is too many letters please try again"
print "or"
print "You have to enter in 6 or more letters"
goto [namecool]


[oknames]
'center on screen
e = int((80-len(names$))/2) 'center on screen
for r = 1 to e

e$ = e$;" "
next r
print
print "Hit ENTER when you are ready"
print
print

for w = 1 to len(names$)
cls
space$ = space$ + "  "
print "    ";space$;names$
for dlay = 1 to 10000
next dlay
next w

For w = 1 to len(names$)
cls
space$ = right$(space$,len(space$)-2)
PRINT "    ";space$;names$
for dlay = 1 to 10000
next dlay
next w
PRINT


For w = 1 to len(name$)
cls
Print e$;right$(names$,w)
for dlay = 1 to 10000
next dlay
next w
PRINT


For w = len(names$) to 1 step-1
cls
Print e$;left$(names$,w)
for dlay = 1 to 10000
next dlay
next w
PRINT

cls
PRINT "    ";
For w = 1 to len(names$)
PRINT MID$(names$,w,1);
FOR DLAY = 1 to 10000
NEXT DLAY
NEXT w

PRINT
PRINT "Neat, huh?"

input "Do you want to do another? (Y/N) "; ur$
ur$=UPPER$(ur$)
ur$=LEFT$(ur$,1)
IF ur$="Y" THEN [namecool]
if ur$="n" then [end]
[end]

Print "I had fun talking to you... goodbye"

end
Back to top Go down
http://hissingworms.co.nr
TheOnly1Left
•The Master•
TheOnly1Left


Retired Staff '10 : Standard Text Program(BASIC) Retire10
Posts : 490
HWPoints : 6528
Join date : 2010-07-10

Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptyThu Jul 15, 2010 10:01 pm

Whats this..?
Back to top Go down
Mitsukaru
Main Administrator
Mitsukaru


Admin '10 : Standard Text Program(BASIC) Admino10
GFX Crew '10 : Standard Text Program(BASIC) Gfxoft10
Recruiter '10 : Standard Text Program(BASIC) Recrui10
Posts : 1328
HWPoints : 1548
Join date : 2008-06-14

Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptyThu Jul 15, 2010 10:07 pm

It's that program I showed you.
Back to top Go down
http://hissingworms.co.nr
HaZe
Supreme Overlord
Supreme Overlord
HaZe


Posts : 950
HWPoints : 7742
Join date : 2010-07-19

Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptyMon Jul 19, 2010 4:25 pm

Very confusing....
Back to top Go down
http://theshooters.forumotion.net
TheOnly1Left
•The Master•
TheOnly1Left


Retired Staff '10 : Standard Text Program(BASIC) Retire10
Posts : 490
HWPoints : 6528
Join date : 2010-07-10

Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptyTue Jul 20, 2010 2:25 pm

indeed
Back to top Go down
HaZe
Supreme Overlord
Supreme Overlord
HaZe


Posts : 950
HWPoints : 7742
Join date : 2010-07-19

Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptyTue Jul 20, 2010 5:50 pm

You should have described it better.
Back to top Go down
http://theshooters.forumotion.net
D3molish3R
♥ Pink ♥
D3molish3R


Posts : 338
HWPoints : 2053
Join date : 2010-07-14

Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptyTue Aug 10, 2010 3:26 am

What can it be used for.
Back to top Go down
D3molish3R
♥ Pink ♥
D3molish3R


Posts : 338
HWPoints : 2053
Join date : 2010-07-14

Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptyTue Aug 10, 2010 3:26 am

oh i get it now.
Back to top Go down
Mitsukaru
Main Administrator
Mitsukaru


Admin '10 : Standard Text Program(BASIC) Admino10
GFX Crew '10 : Standard Text Program(BASIC) Gfxoft10
Recruiter '10 : Standard Text Program(BASIC) Recrui10
Posts : 1328
HWPoints : 1548
Join date : 2008-06-14

Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptyTue Aug 10, 2010 3:40 am

Please don't double post. And cool d:
Back to top Go down
http://hissingworms.co.nr
D3molish3R
♥ Pink ♥
D3molish3R


Posts : 338
HWPoints : 2053
Join date : 2010-07-14

Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) EmptySat Aug 28, 2010 9:32 pm

sorry
Back to top Go down
Sponsored content





Standard Text Program(BASIC) Empty
PostSubject: Re: Standard Text Program(BASIC)   Standard Text Program(BASIC) Empty

Back to top Go down
 
Standard Text Program(BASIC)
Back to top 
Page 1 of 1
 Similar topics
-
» Text Sig v2
» What is your antivirus program
» KiLLErs Text Sig
» Text(Better version)
» Text Colors(mIRC)

Permissions in this forum:You cannot reply to topics in this forum
Hissing Worms :: Tech Forum :: Programming-
Jump to:  
Forum create on Forumotion | ©phpBB | Free forum support | Report an abuse | Forumotion.com