为啥错了
查看原帖
为啥错了
820112
LLLLK楼主2022/10/4 20:04
#include<cstdio>

using namespace std;

int main()
{
	int a, b, c, d;
	scanf("%d%d%d.%d", &a, &b, &c, &d);
	printf("%d.%d%d%d", d, c, b, a);
	return 0;
}    
2022/10/4 20:04
加载中...