解题思路:
根据观察发现,可以完全平方的数要么是奇数要么是四的倍数
注意事项:
我的错误思路:试图根据a,与b,c的大小关系,确定c
我的结论:a在根号c和c之间
b在0和根号c之间
结果可想而知:答案错误!!!!
后来发现,a,b的选择与c的大小关系不那么直接,并不是说b一定就比c小之类的
参考代码:
import java.util.Scanner; /** * @Author:杨雨彤 * @date:2024/1/11 15:10 */ public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int L = scan.nextInt(); int R = scan.nextInt(); int count = 0; for (long i = L; i <=R ; i++) { if(i%2!=0||i%4==0){ count+=1; } } System.out.println(count); } }
0.0分
1 人评分