What goes before this?

3 ビュー (過去 30 日間)
Sean St Cyr
Sean St Cyr 2020 年 7 月 7 日
編集済み: Les Beckham 2020 年 7 月 8 日
Month = 'Feb';
Date = '18';
N = 49;
Stuff = ___ ('Feb 18 is the 49 day of the year.', Month,Date,N); %% WHAT GOES AFTER STUFF =
fprintf = ('%s\n',Stuff)
I am trying to figure out what would go here to make it print the "Feb 18 is the 49 day of the year" and i Cannot figure it out. Please help

採用された回答

Les Beckham
Les Beckham 2020 年 7 月 8 日
編集済み: Les Beckham 2020 年 7 月 8 日
You can change your 'Stuff =' line to the following:
Stuff = sprintf('%s %s is the %d day of the year.', Month,Date,N);
Or, you can replace that line and the following fprint line by this:
fprintf('%s %s is the %d day of the year.\n', Month,Date,N)
You should probably read the following documentation:

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by