1)Write a program in QBASIC to multiply 5,10 and 15 and print the numbers.
2)Write a program in QBASIC to print your name five times.
PLEASE ANSWER FAST...ITS URGENT..
Who will answer my question I will mark his answer as BRAINLIEST..
Answers
Answered by
0
Answer:
10 cls
20 input "enter first number",A
30 input "enter second number", B
40 input "enter third number",C
50 product= A×B×C
60 print"Product of the three numbers =", product
70 end
Answered by
0
Answer:
Using FOR .... NEXT
CLS
INPUT "Enter any number"; n
FOR i = 1 TO 10
a = n * i
PRINT n; "x"; i; "="; a
NEXT i
END
Using WHILE .... WEND
CLS
INPUT "Enter any number"; n
i = 1
WHILE i <= 10
a = n * i
PRINT n; "x"; i; "="; a
i = i + 1
WEND
END
Explanation:
Similar questions