QUESTION 23 Suppose you want to ask the user to input a value into a program, and assign it to the variable A. What is t
Posted: Sun Jul 10, 2022 11:27 am
QUESTION 23 Suppose you want to ask the user to input a value into a program, and assign it to the variable A. What is the correct Matlab syntax? O input(Please input a value for A \n,A); O A=input 'Please input a value for A'; A=('Please input a value for A'); None of these is the correct syntax input('Please input a value for A')=A O A=input('Please input a value for A');