题解 | #数字反转之-三位数#
数字反转之-三位数
https://ac.nowcoder.com/acm/problem/22000
#include<cstdio>
int main() {
char a,b,c;
scanf("%c%c%c",&a,&b,&c);
printf("%c%c%c",c,b,a);
}
题解 文章被收录于专栏
https://ayx.moefox.tech/
数字反转之-三位数
https://ac.nowcoder.com/acm/problem/22000
#include<cstdio>
int main() {
char a,b,c;
scanf("%c%c%c",&a,&b,&c);
printf("%c%c%c",c,b,a);
}
https://ayx.moefox.tech/
相关推荐