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

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 <= && >

This question is closed.

Asked:

on 14 Jan 2015

Closed:

on 20 Aug 2021

Community Treasure Hunt

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

Start Hunting!