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