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
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 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 t
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');