week5 if else pdf

7
if else เปิดเหมือนทุกครั ้ง #include "stdio.h" void main () และ { } int age;

Upload: pphosanit-tik

Post on 27-Sep-2015

32 views

Category:

Documents


1 download

DESCRIPTION

.......................

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