Basic 256 program to input three numbers and display sum of two greatest numbers
Answers
Answered by
3
Answer:
Explanation:
input " enter your name " , N$
input " enter first number " , A
input " enter second number " , B
input " enter third number " , C
input " find GREATEST number of A , B , C "
IF A and B are GREATEST PRINT " A+B "
OR
IF B and C are GREATEST PRINT " B+C "
OR
IF A and C are GREATEST PRINT " A+C "
END IF
PRINT " SUM OF A+B OR B+C OR A+C "
Answered by
0
Answer:
# program to find some of the number
Input "Enter the first number,"A
Input" Enter the second number,"B
Input "enter the third number ,"C
Sum =A+B+C
Print the sum A+B+C
Similar questions