A+B: Difference between revisions

Content added Content deleted
Line 3,689:
 
=={{header|QB64}}==
<lang QB64>DIM a AS INTEGER, b AS INTEGER
DIM a AS INTEGER, b AS INTEGER
DIM c AS LONG
INPUT "Enter A: ", a
Line 3,696 ⟶ 3,695:
c = a + b
PRINT ""
PRINT "A + B = " + LTRIM$(STR$(c)) </lang>
</lang>
 
'''Fully implemented version:'''