write a matlab code that generate a random number, then divide the generated number by 4 if its even number and greater than 100.

1 vue (au cours des 30 derniers jours)
write a matlab code that generate a random number, then divide the generated number by 4 if its even number and greater than 100.
  4 commentaires
Ali Salih
Ali Salih le 3 Juil 2020
x=round(rand()*1000);
disp(['the random number is :' num2str(x)])
if x>100
if rem(x,2)==0
y=x/4;
disp(['the random number is even and greater than 100, answer is :' num2str(y)])
else
disp('the random number is greater than 100 but not even number')
end
else
disp('the random number is not greater than 100')
end

Connectez-vous pour commenter.

Réponses (2)

KSSV
KSSV le 3 Juil 2020
  1. To generate randomnumber read about randi.
  2. To check whether even or not use mod. Read about mod.
  3. To check whether greater or not, read about inequalitites.
  11 commentaires

Connectez-vous pour commenter.


Sysy Gdhhdys
Sysy Gdhhdys le 15 Mar 2022
Modifié(e) : Walter Roberson le 15 Mar 2022
clc;clear all;
x=randi([100,1000]) ;
disp(['the random number that is between 100 and 1000 is ( ' num2str(x) ')'])
the random number that is between 100 and 1000 is ( 825)
if x>500;
disp('the number is greater than 500')
x2=~mod(x,2);
x3=x2*x;
x4=x3/4;
if x4==0;
disp('the number is odd')
else
disp(['that number is even and greater than 500 we divided by 4 is equal to (' num2str(x4) ')'])
end
else
disp('the number is not greater than 500')
end
the number is greater than 500
the number is odd

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by