인프런 커뮤니티 질문&답변
정올 연습문제
작성
·
125
0
#include <stdio.h>
int main() { float a, b; double c;```
```scanf("%f", &a);``````scanf("%f", &b);```
```scanf("%if", &c);```
printf("%.3f\n", a);
printf("%.3f\n", b);
printf("%.3if", c);
return 0;
```}
왜 안되는 거죠 ? 입력은 받는데 출력값이 이상하게 나오네요
답변
답변을 기다리고 있는 질문이에요
첫번째 답변을 남겨보세요!




