Computer Science, asked by iarif5488, 1 year ago

compare LET and INPUT command with the help of example

Answers

Answered by Ganesh291
1
Programmer allows the user to assign the value = let
Programmer assigns the value while writing the program
Different values could be entered in different times of execution.= input

INPUT : 3. INPUT "Enter 1st Number : "; a

INPUT "Enter 2nd Number : "; b

c=a+b

Print "Result : "; c

LET :3. Let a = 12

Let b = 10

c=a+b

Print c


Similar questions