题解 | #牛牛的空格分隔#
牛牛的空格分隔
https://www.nowcoder.com/practice/b2203c4a5c304536a7f577bc885de511
#include <stdio.h>
int main() {
char a=0;
int b=0;
float c=0;
scanf("%c %d %f",&a,&b,&c);
printf("%c %d %0.6f",a,b,c);
return 0;
}
牛牛的空格分隔
https://www.nowcoder.com/practice/b2203c4a5c304536a7f577bc885de511
#include <stdio.h>
int main() {
char a=0;
int b=0;
float c=0;
scanf("%c %d %f",&a,&b,&c);
printf("%c %d %0.6f",a,b,c);
return 0;
}
相关推荐