x=input('please input a number:')
please input a number:22
x = 22
輸入字串
x=input('please input a string:','s')
please input a string:this is a string
x = this is a string
disp(23+454-29*4)
361disp([11 22 33; 44 55 66; 77 88 99])
11 22 33
44 55 66
77 88 99
?disp('this is a string')
this is a string
fprintf('the area is %8.5f\n', area) % 注意輸出格式前須有%符號,
%跳行符號須有\符號
the area is 12.56637 % 輸出值為8位數含5位小數
在這裡你如果學過c語言就能很好的理解了。
error('this is an error')
this is an error
matlab的輸入輸出常見語句
x input please input a number please input a number 22 x 22 輸入字串 x input please input a string s please input a string this is a string x this is a st...
matlab的輸入輸出常見語句
x input please input a number please input a number 22 x 22 輸入字串 x input please input a string s please input a string this is a string x this is a st...
C 的輸入輸出語句
一 輸出語句 console.writeline 你好!輸出以後自動換行 你好!請按任意鍵繼續.console.write 你好!輸出以後不會自動換行 你好!請按任意鍵繼續.3.輸出語句不僅可以做簡單的輸出,還可以做相加運算,例如 int age 19 string name 張三丰 console...