フィルターのクリア

Mathlab loops questıons about new starters

2 ビュー (過去 30 日間)
Mert Can Sökmen
Mert Can Sökmen 2021 年 3 月 29 日
コメント済み: Rik 2021 年 3 月 29 日
Write a program which asks the user to enter their name and N and integer, and displays that name N times. See the help of input to read strings.
Run 1:
Enter name: Matlab
Enter N: 3
Matlab
Matlab
Matlab
  1 件のコメント
Rik
Rik 2021 年 3 月 29 日
If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks).

サインインしてコメントする。

採用された回答

Riley
Riley 2021 年 3 月 29 日
clear
clc
str = input('Enter name:','s') ;
N = input('Enter N:') ;
for i=1:N
disp(str);
end
Try this. But as a starter, you'd better utilize the HELP and get started by your self. You'll find it not that hard.
  5 件のコメント
Mert Can Sökmen
Mert Can Sökmen 2021 年 3 月 29 日
These are not my homework. Teacher shared some questıons about mıdterm and ı cant solve this 3 questıon.And he did not share answers. I am thinking this questıons will be in midterm this reason ı have to fınd answers.
Rik
Rik 2021 年 3 月 29 日
Then it might be attempted academic fraud, instead of being lazy and posting a homework question.
Don't you think you will learn more if you actually try to learn from this question? You can find guidelines for posting homework on this forum here.

サインインしてコメントする。

その他の回答 (1 件)

KSSV
KSSV 2021 年 3 月 29 日
REad about the function input.

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by