返回列表 發帖
class d120114{
        public static void main(String args[]){
                int x = 0, y = 0, z = 0;  
                Scanner input = new Scanner(System.in);
                System.out.println("請輸入Z的最大值:");
                z = input.nextInt();
                while(y < z)
                        y = 3*x*x + 2*x + 1; x++;
                x -= 2;
                System.out.print("當X為:" + x);
                System.out.print(" Y:" + 3*x*x + 2*x + 1);
                System.out.println("符合Y<Z");
        }
}
Roger Cheng

TOP

返回列表