Download - Week5 if Else PDF

Transcript
  • if else

    #include "stdio.h" void main () { }

    int age;

  • printf("How old are you?:");

    scanf("%d",&age);

  • if(age >= 50)

    { }

  • printf("You are old!!!");

    Else

  • { }

    printf("You are young(*_*)");

  • printf("good bye (^/\^)");

    return 0;

  • run


Top Related