How do I get to boldface the numbers that I input?
조회 수: 8 (최근 30일)
이전 댓글 표시
Here is an intruction and a sample output to what it is supposed to look like.
댓글 수: 1
Steven Lord
2022년 6월 7일
Are you certain that your assignment requires you to display the user's answers in boldface, or did the instructor simply write the answers in boldface in the text of the assignment for emphasis?
답변 (2개)
Hans Scharler
2022년 6월 7일
I know some fprintf tricks for text formatting, although it might not be elegant. You can use strong inside of fprintf.
outputNumber = randi(99);
fprintf('What is the meaning of life? <strong>%d</strong>', outputNumber)
Also, there is a File Exchange / Add-on called "cprintf" for customizing the output in the command window: https://www.mathworks.com/matlabcentral/fileexchange/24093-cprintf-display-formatted-colored-text-in-command-window
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Dates and Time에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!