Info

This question is closed. Reopen it to edit or answer.

My functin wont run my if statement. How do I fix this?

1 view (last 30 days)
Jamil
Jamil on 14 Jan 2015
Closed: MATLAB Answer Bot on 20 Aug 2021
function [ PrimeF ] = Question_4( X )
clear all
clc
prompt=('Please enter a 2 digit number');
Inp = input(prompt);
X= Inp
if X >= 100 && X < 10
fprintf('That is wrong, please enter a positive 2 digit number')
if X <=99 && X >=10
PrimeF= factor(X)
end
end

Answers (1)

Sean de Wolski
Sean de Wolski on 14 Jan 2015
Edited: Sean de Wolski on 14 Jan 2015
How can x by greater than or equal to 100 and less than 10? It can't.
Perhaps you meant or || instead of and &&, or maybe you want to flip the comparators <= && >

Community Treasure Hunt

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

Start Hunting!