题解 | #浮点数输出#
浮点数输出
https://ac.nowcoder.com/acm/problem/16135
按照题意原样输出即可。
#include<cstdio>
char str[100];
int main(){
scanf("%s", str + 1);
printf("%s\n", str + 1);
}
浮点数输出
https://ac.nowcoder.com/acm/problem/16135
按照题意原样输出即可。
#include<cstdio>
char str[100];
int main(){
scanf("%s", str + 1);
printf("%s\n", str + 1);
}
相关推荐