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

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

1 Commento

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.

Accedi per commentare.

Risposte (2)

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')

Categorie

Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange

Richiesto:

il 21 Nov 2018

Risposto:

Jan
il 21 Nov 2018

Community Treasure Hunt

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

Start Hunting!

Translated by