4574 - 도서관 (Snippet)

Time Limit: 1s Memory Limit: 128MB

Snippet Judge Submissions: 210 Solved: 97
Description

책의 정보를 입력받고 출력하려고 한다.

Sample Code의 YOUR_CODE 부분에 들어갈 struct를 작성해보자.

Input

Line 1: 책의 제목 title (최대 64글자)

Line 2: 책의 저자 author (최대 32글자)

Line 3: 책의 가격 value (0≤ value ≤10000, 실수형)

Output

Line 1: 제목 by 저자: $가격

형식으로 출력한다.

Sample Code
#include <stdio.h>
YOUR_CODE
int main(void){
    struct book library;
    scanf("%s", library.title);
    scanf("%s", library.author);
    scanf("%f", &library.value);
    printf("%s by %s: $%.2f", library.title, library.author, library.value);
    return 0;
}
Sample Input
HarryPotter
J.K.Rowling
32.5
Sample Output
HarryPotter by J.K.Rowling: $32.50
Hint

만약 이 문제가 어렵다면 구조체를 공부해봅시다.