BASIC Program For Sum of Numbers Using IF Then Statement andrey воскресенье, 16 февраля 2014 г. No Comment

5 CLS
10 Sum = 0
20 I = 1
30 Input "Enter a Number"; N
40 Sum = Sum + N
50 I = I + 1
60 IF I > 10 Then 80
70 Goto 30
80 Print " The sum is:" Sum
90 End

The first line CLS clears the screen of the previous program that was executed. Sum is initialised to 0. Always advisable to initialise it to 0. 'I' is the counter. You can choose to initialise it to 0 or 1. The keyword 'INPUT' obtains a number from the user by displaying a message 'Enter a number'.


Next line, the counter is incremented, and the compiller moves to the next line and assigns 0 + Entered number to Sum. The 'IF' statement sets a condition and if the condition is true, the program continues to line 80, if the condition is false, that is the counter is below ten, it goes back to line 30 requesting another number from the user.


The condition must be satisfied before the program prints the result to the screen.

5 CLS
10 Sum = 0
20 I = 1
30 Input "Enter a Number"; N
40 Sum = Sum + N
50 I = I + 1
60 IF I > 10 Then 80
70 Goto 30
80 Print " The sum is:" Sum
90 End

The first line CLS clears the screen of the previous program that was executed. Sum is initialised to 0. Always advisable to initialise it to 0. 'I' is the counter. You can choose to initialise it to 0 or 1. The keyword 'INPUT' obtains a number from the user by displaying a message 'Enter a number'.


Next line, the counter is incremented, and the compiller moves to the next line and assigns 0 + Entered number to Sum. The 'IF' statement sets a condition and if the condition is true, the program continues to line 80, if the condition is false, that is the counter is below ten, it goes back to line 30 requesting another number from the user.


The condition must be satisfied before the program prints the result to the screen.

by Jillur Rahman

Jillur Rahman is a Web designers. He enjoys to make blogger templates. He always try to make modern and 3D looking Templates. You can by his templates from Themeforest.

Follow him @ Twitter | Facebook | Google Plus

No Comment