kay sa una Nursing ra og IT ang ako na ilhan nga course. Unya daghan na mn kaau to og nursing student sa una mao nag IT nlng ko
pro na lingaw mn ko na lingaw pd ko sa ako work krn
![]()
kay sa una Nursing ra og IT ang ako na ilhan nga course. Unya daghan na mn kaau to og nursing student sa una mao nag IT nlng ko
pro na lingaw mn ko na lingaw pd ko sa ako work krn
![]()
feel ra naku master kay feeler man gud ko. nahaha![]()
boss FYI lang boss ha dili man ni code imo gi post boss, its a batch of DOS commands.
a sample code of a program looks like this boss,
ex. sa ingon ana na computer is a GW Basic Language. mao ni cya ang mo compile sa imo code aron mo dagan.
| 10 ' checkbk.bas
| 20 ' a simple check book balancing program
| 30 ' copyright 1987, 1992 s m estvanik
| 40 '
| 50 CLS
| 60 PRINT "Check Book Balancing Program"
| 70 PRINT
| 80 INPUT "What is your opening balance";BALANCE
| 90 PRINT
| 95 PRINT "Next transaction? (D/eposit, C/heck, Q/uit)"
| 100 T$=INPUT$(1)
| 110 IF T$ <> "D" AND T$<> "d" GOTO 210 ' is this a deposit?
| 120 INPUT "Amount of deposit";DEPOSIT
| 130 BALANCE = BALANCE + DEPOSIT ' add to balance
| 140 PRINT USING "New balance is $#####.##";BALANCE
| 150 GOTO 90
| 210 IF T$ <> "C" AND T$<> "c" GOTO 300 ' is this a check?
| 220 INPUT "Amount of check";CHECK
| 230 BALANCE = BALANCE - CHECK ' subtract from balance
| 240 PRINT USING "New balance is $#####.##";BALANCE
| 250 GOTO 90
| 300 IF T$ <> "Q" AND T$<> "q" GOTO 90 ' do they want to quit?
| 400 PRINT ' we're done, so show the final balance
| 410 PRINT USING "Final balance is $#####.##";BALANCE
| 430 END
nag programmer ko kay kita kog mga salida sauna nga nka automate ug mga butang gamit ang computer nya lami pjud kaayo paminawn ang keyboard nga nag paka2 inig type ug nindot kaayo tan.awn ang mga codes nga nag dagan2 sa screen lol!
dili ko ganahan mo atubang og client. computer ra hehehe
DOS commands are still codes, codes are instructions, words, letters, figures, or other symbols substituted for other words to convey, instruct or perform certain functions
Codes are not specific to source code, remember their are 'secret' codes when talking about cryptography.
plus DOS commands can be or is use to write batch files source codes too to instruct the OS.
we write batch file source code to customize OS functionality.
like auto run a certain executable in an embedded device,
Your android phone is a linux OS that runs a certain software controller after booting automatically.
that "auto run" is written in bash (Linux equivalent of DOS commands).
Last edited by cebugdev; 03-10-2016 at 10:42 AM.
sakto ka na sayop boss...
commands are batch of codes na compiled, after comilation kay naa nana cya extension na exe or com, usually basta com kay command na cya, pero exe na gani na kay application nana cya which consists of batch of codes... that is why its called a command and not code. you guys misinterpret the difference between the dos command and code.
Last edited by john_yo; 03-10-2016 at 11:45 AM.
Similar Threads |
|