张田懿
张田懿
题解
8
全部文章
题解
归档
标签
去牛客网
登录
/
注册
8
792 浏览
0 回复
2020-12-08
张田懿
+关注
整数的十位
https://ac.nowcoder.com/acm/problem/21991
include<bits/stdc++.h>
using namespace std;
int main()
{
int a,c=0;
cin>>a;
c=a/10%10;
cout<<c;
return 0;
}
举报
收藏
赞 7
评论加载中...