为我弹首琴吧
为我弹首琴吧
题解
题解 | #平方根#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #平方根#
323 浏览
0 回复
2023-12-17
为我弹首琴吧
+关注
平方根
https://ac.nowcoder.com/acm/problem/22003
#include<stdio.h>
#include<math.h>
int main()
{
int n,t;
scanf("%d",&n);
t=sqrt(n);
printf("%d",t);
}
C
举报
收藏
赞 1
评论加载中...