java基础练习 7
Posted ???!!!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java基础练习 7相关的知识,希望对你有一定的参考价值。
public class Seventh { public static void main(String[] args){ double x=0,a=1,b=9; while(x!=a*a-100&&x!=b*b-268){ x++; a=Math.floor(Math.sqrt(x+100)); // System.out.println(a); b=Math.floor(Math.sqrt(x+268)); // System.out.println(b); } System.out.println(x); } }
以上是关于java基础练习 7的主要内容,如果未能解决你的问题,请参考以下文章