I keep getting undefined input error

Hello , im trying to make this gpa/cgpa calculator that asks the user for input , but whenever i reach the the input that requires a character it shows undifined error as shown in the screenshot :
Enter letter grade for course: A
Error using input
Undefined function or variable 'A'.
Error in Untitled11 (line 10)
Grade = input('Enter letter grade for course: ');

답변 (1개)

Mathieu NOE
Mathieu NOE 2022년 5월 10일

1 개 추천

hello
you want to request a string not a number , so the correct code is :
Grade = input('Enter letter grade for course: ',"s");

댓글 수: 4

rak crak
rak crak 2022년 5월 10일
Error using input
The second argument to INPUT must be 's'.
Error in Untitled11 (line 10)
grade = input('Enter letter grade for course: ',"s");
Mathieu NOE
Mathieu NOE 2022년 5월 10일
ok
this can be due to which release you are working with (I have R2020b)
so look for the help of the function and correct if needed
rak crak
rak crak 2022년 5월 10일
i use R2018a , will check help of the function , thank you.
Cris LaPierre
Cris LaPierre 2022년 5월 10일
편집: Cris LaPierre 2022년 5월 10일
Try using single quotes for 's', similar to what you did for Course.
Grade = input('Enter letter grade for course: ','s');

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Testing Frameworks에 대해 자세히 알아보기

제품

릴리스

R2018a

태그

질문:

2022년 5월 10일

편집:

2022년 5월 10일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by