题解 | #牛牛的空格分隔#
牛牛的空格分隔
https://www.nowcoder.com/practice/b2203c4a5c304536a7f577bc885de511
#include <stdio.h>
int main() {
char a;
int b;
float c;
while (scanf("%c\n %d\n %f\n", &a, &b,&c) != EOF) { // 注意 while 处理多个 case
// 64 位输出请用 printf("%lld") to
printf("%c %d %.6f", a, b,c);
}
return 0;
}

