행복한 프로그래밍

initial

영웅*^%&$ 2018. 2. 20. 18:54
728x90

#include <stdio.h>
main()
{

    char firstInitial;
    char lastInitial;
    int age;
    int favorite_numberl

    printf("이름(영어로)은 무슨 글자로 시작합니까? \n");
    scanf(" %c", &firstInitial);

    printf("성(영어로)은 무슨 글자로 시작합니까? \n");
    scanf(" %c", &lastInitial);

    printf("나이는 몇 살인가요?? \n");
    sacnf(" %d", &age);

    printf("제일 좋아하는 숫자는(정수만)?\n");
    scanf(" %d, &favorite_number");

    printf("\n당신의 이니셜은 %c.%c. 나이는 %d입니다. ",
        firstInitial, lastInitial, age);
    printf("\n제일 종아하는 숫자는 %d입니다 \n\n", favorite_number);

    return 0;
    }

728x90

'행복한 프로그래밍' 카테고리의 다른 글

배열의 기본   (0) 2018.02.20
movie   (0) 2018.02.20
fahr >> upper  (0) 2018.02.20
chess   (0) 2018.02.20
factorial  (0) 2018.02.20