Easy Difference between let and input
Answers
Answered by
90
INPUT : 1. Programmer allows the user to assign the value
LET : 1. Programmer assigns the value while writing the program.
INPUT : 2. Different values could be entered in different times of execution.
LET : 2. Values could not be changed during execution till they are changed from the source.
INPUT : 3. INPUT "Enter 1st Number : "; a
INPUT "Enter 2nd Number : "; b
LET : 1. Programmer assigns the value while writing the program.
INPUT : 2. Different values could be entered in different times of execution.
LET : 2. Values could not be changed during execution till they are changed from the source.
INPUT : 3. INPUT "Enter 1st Number : "; a
INPUT "Enter 2nd Number : "; b
Answered by
20
⬆above⬆
answer is useful
Similar questions