Finding maximum integer between [100,200] divisible by 21?

I want use "for" and "while" to get the result.

1 Kommentar

Jan
Jan am 21 Nov. 2018
This sounds like a homework question. Using for and while will be hard, but one or the other is smart enough. Please post, what you have tried so far and ask a specific question. The forum will not solve your homework. You need one line of code only, therefore it is hard to give some hints without posting the complete solution.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Jan
Jan am 21 Nov. 2018
Hints:
  • The vector of number from 100 to 200:
100:200
  • Dividable by 21:
mod(x, 21) == 0
  • The maximum value can be found by the max() command, or by find(y, 1, 'last')

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 21 Nov. 2018

Beantwortet:

Jan
am 21 Nov. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by