행복한 프로그래밍

질문에 답하기

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

#include <stdio.h>

main()
{
    char location[100];
    int date;
    float temp;

    printf("어디에 살고 계시나요? ");
    scanf("%s", location);

    printf("오늘이 며칠인가요?");
    scanf("%d", &date);

    printf("오늘 기온은 몇도인가요?(실수로) ");
    scanf("%f", &temp);

    printf("\n오늘은 %d일이고 %s이라는 아주 좋은 곳에 살고 계시군요!\n",
        date, location);
    printf("오늘은 %.1f도군요.\n", temp);

    return 0;
}

728x90

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

signal   (0) 2018.02.26
obvious   (0) 2018.02.20
히카루의 논리   (0) 2018.02.20
배열의 기본   (0) 2018.02.20
movie   (0) 2018.02.20