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 view (last 30 days)
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 Comments
Ali Salih
Ali Salih on 3 Jul 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

Sign in to comment.

Answers (2)

KSSV
KSSV on 3 Jul 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 Comments

Sign in to comment.


Sysy Gdhhdys
Sysy Gdhhdys on 15 Mar 2022
Edited: Walter Roberson on 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

Community Treasure Hunt

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

Start Hunting!