蓝桥杯之方格填数
作者:互联网
答案:3137548
思路:计算方格顶点(x,y)到原点(0,0)的距离,如果小于等于半径r,那么这个方格就是完整的方格。注意:是小于等于,不是只有小于,因为有可能是在圆内的同时到原点的距离恰好为r,比如半径为5
package LanQiao;
public class LanQiao57 {
public static void main(String[] args) {
//第一题:125
//第二题:
int res = 0;
int r = 1000;
for(int x = 1; x <= r; x++){
for(int y = 1; y <= r; y++){
if(x * x + y * y <= r * r){//计算方格顶点(x,y)到原点(0,0)的距离,如果小于等于半径r,那么这个方格就是完整的方格。注意:是小于等于,不是只有小于
res++;
}
}
}
System.out.println(res * 4);
}
}
标签:小于,原点,int,res,蓝桥,填数,方格,等于 来源: https://blog.csdn.net/weixin_46497503/article/details/113853996