Home > Mobile >  If statement executing regardless of the condition
If statement executing regardless of the condition

Time:10-04

I'm writing a C program that asks the user for a variety of inputs, one is a Yes or No question. If you put Y, or y, the If statement is supposed to execute. However, no matter what you input, it goes through with the If statement.

double phonePrice;
double phoneTax;
double phoneTotal;
double phoneApplePrice;
double phoneSubtotal;
double temp;
int yearsAppleCare;
char userAnswer;

//prompting for price
printf("Enter the price of the phone> ");
scanf("%f", &phonePrice);
fflush(stdin);

//prompting for iphone
printf("Is the phone an iPhone (Y/N) ?> ");
scanf("%c", &userAnswer);
fflush(stdin);

//nested if statements asking for apple care amount
if(userAnswer=="Y"||"y")
{
    printf("Enter the number of years of AppleCare> ");
    scanf("%d", &yearsAppleCare);
    
    if(yearsAppleCare<=0)
    {
        printf("You must choose at least 1 year of AppleCare");
        return 0;
    }
}

Any help with this would be appreciated.

CodePudding user response:

For starters this call

fflush(stdin);

has undefined behavior. Remove it.

Instead of this call

scanf("%c", &userAnswer);

use

scanf(" %c", &userAnswer);
      ^^^^

to skip white spaces in the input buffer as for example the new line character '\n'.

Also for double variables use the conversion specifier %lf. For example

scanf("%lf", &phonePrice);

The condition in the if statement

if(userAnswer=="Y"||"y")

is equivalent to

if( ( userAnswer=="Y" ) || ( "y" ) )

As the string literal "y" that is implicitly converted to a pointer to its first element is not equal to a null pointer then the condition always evaluates to logical true.

You need to write

if( userAnswer == 'Y' || userAnswer == 'y' )

using integer character constants 'Y' and 'y' instead of the string literals.

CodePudding user response:

Error is here:

//nested if statements asking for apple care amount
if(userAnswer=="Y"||"y")
{

Should be:

//nested if statements asking for apple care amount
if(userAnswer == "Y" || userAnswer == "y")
{

Wait! No!

Should be:

//nested if statements asking for apple care amount
if( strcmp(userAnswer, "Y") == 0 || strcmp(userAnswer, "y") == 0)
{

Why?

What does == mean?

In C language, == means the two objects are equal. In the case of strings, the objects are char*, I.e. pointers to char. These will be equal if and only if the memory address is the same. This will not be true in this case.

Why? Because one string is compiled into the program and initialised as the program starts, and the other is provided by the user into temporary memory. These will be at different addresses so the pointers will not be the same.

What you probably want is to compare the contents of the memory locations pointed to by the two pointers.

For that purpose the strcmp function is provided. This function returns zero if the strings are the same. You may also want to consider stricmp.

  • Related