If else if and else : If « Language Basics « C / ANSI-C






If else if and else


/* Magic number program #4. */
#include <stdio.h>
#include <stdlib.h>

int main(void) 
{
  int magic; /* magic number */
  int guess; /* user's guess */

  magic = rand(); /* generate the magic number */

  printf("Guess the magic number: ");
  scanf("%d", &guess);

  if(guess == magic) {
    printf("** Right ** ");
    printf("%d is the magic number", magic);
  }
  else if(guess > magic)
    printf("Wrong, too high");
  else printf("Wrong, too low");

  return 0;
}

  

           
       








Related examples in the same category

1.A simple example of the if statementA simple example of the if statement
2.Using ifs to decide on a discount
3.IF statement 3
4.If else
5.More statement in if else
6.More if else
7.Block if else statementBlock if else statement
8.Use two if statements
9.Use result as the if condition
10.Use user input as the if condition
11.Use int as if condition
12.If statement for different choice
13.Use calculation in if statement
14.if command
15.Use if else
16.Use statement inside if else
17.Move more statements into if and else
18.If else statement inside a for loop
19.If statement inside for loop