题解 | #整数的十位#
整数的十位
https://ac.nowcoder.com/acm/problem/21991
#include<cstdio>
int main() {
int a;
scanf("%d",&a);
a/=10;
printf("%d",a%10);
}
题解 文章被收录于专栏
https://ayx.moefox.tech/
整数的十位
https://ac.nowcoder.com/acm/problem/21991
#include<cstdio>
int main() {
int a;
scanf("%d",&a);
a/=10;
printf("%d",a%10);
}
https://ayx.moefox.tech/
相关推荐