何雪莹何雪莹何雪莹
何雪莹何雪莹何雪莹
题解
题解 | #平方根#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #平方根#
573 浏览
0 回复
2021-07-16
何雪莹何雪莹何雪莹
+关注
平方根
https://ac.nowcoder.com/acm/problem/22003
include<bits/stdc++.h>
using namespace std;
int main()
{
int a;
cin>>a;
int b;
b=sqrt(a);
cout<<b;
return 0;
}
举报
收藏
赞
评论加载中...