65.1k views
0 votes
Write QBASIC program that Calculate the sum of 70, 90, 80, 120 ​

User Rogerz
by
8.3k points

1 Answer

4 votes

Answer:

```

CLS

sum = 70 + 90 + 80 + 120

PRINT "The sum of 70, 90, 80, and 120 is "; sum

END

```

Step-by-step explanation:

User Shoujs
by
8.2k points

Related questions

asked Feb 22, 2024 220k views
Dw asked Feb 22, 2024
by Dw
8.0k points
2 answers
0 votes
220k views
1 answer
2 votes
159k views