How to write a script to display an input of 10 times?

조회 수: 3 (최근 30일)
Kong
Kong 2013년 11월 13일
댓글: Muhammadjawad 2022년 12월 5일
Write a script to ask the user to input an integer number between 0 and 255, and output the number to the screen between the characters '<' and '>'. This input and display operation should be repeated 10 for 10 times. After the 10th iteration the script should save all the input numbers to a text file in a human readable form.
Develop a user function to do the following check for each number entered: If the number entered is bigger than 255, the script should print a message " error: value too big." to the screen. If a negative number is entered, no matter what is the exact number, the script should convert it to -1.

답변 (1개)

Ibrahim Mohammed Wajid
Ibrahim Mohammed Wajid 2022년 7월 4일
편집: Ibrahim Mohammed Wajid 2022년 7월 4일
function numberCheck(n)
if n > 255
disp("error: value too big.");
else
if n < 0
n = -1;
else
disp("<"+n+">");
n = input('enter a number between 0 and 255');
numberCheck(n);
end
end
end
n = input('enter a number between 0 and 255');
numberCheck(n);
  댓글 수: 1
Muhammadjawad
Muhammadjawad 2022년 12월 5일
How do you wrie for ' After the 10th iteration the script should save all the input numbers to a text file in a human readable form.'

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

카테고리

Help CenterFile Exchange에서 Entering Commands에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by