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 Ansicht (letzte 30 Tage)
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 Kommentare
Ali Salih
Ali Salih am 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

Melden Sie sich an, um zu kommentieren.

Antworten (2)

KSSV
KSSV am 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 Kommentare

Melden Sie sich an, um zu kommentieren.


Sysy Gdhhdys
Sysy Gdhhdys am 15 Mär. 2022
Bearbeitet: Walter Roberson am 15 Mär. 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

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by