0

这个程序的错误是 main 方法中的 while 语句。从某种意义上说,当我输入无效的输入值时,它会停止并退出程序,当我输入正确的值时,它会循环一次 while 语句,但在完成更多工作后,我的代码突然循环无穷大,任何输入低于 1025。忽略程序输出的草率,因为我仍在编辑它,主要问题是为什么它不会停止在 while 语句中循环。

import java.util.Scanner;

public class DNS
{
    public static void main(String[] args)
    {
        int y;
        Scanner input = new Scanner( System.in);

        System.out.println("java DisplayNumberSystems");
        System.out.println("Enter a decimal value to display to: ");
        y = input.nextInt();

        while(y !=1025)
        {

            for(int x=0; x <=y; x++)
            {
                System.out.println("Decimal");
                System.out.println(x);
            }


            for(int i=0; i <=y; i++)
            {
                System.out.println("");
                System.out.println("Binary");
                convertToBinary(i);
            }

            System.out.println("");             

            for(int z=0; z <=y; z++)
            {
                System.out.println("Hex");
                convertToHex(z);
            }

            System.out.println("");

            for(int d=0; d <=y; d++)
            {
                System.out.println("Octal");
                convertToOctal(d);
                System.out.println("");
            }

        }
    }

    public static void convertToBinary(int x)
    {

        if(x >0)
        {

            convertToBinary(x/2);
            System.out.printf(x%2 + "");

        }

    }

    public static void convertToOctal(int x)
    {
        int rem; 

        while(x >0)
        {
            rem = x%8;
            System.out.printf("%d", rem);
            x=x/8;
        }
    }

    public static void convertToHex(int x)
    {
        int rem;

        while(x >0)
        {

        rem = x%16;
            switch(rem)
            {
                case 1: 
                    System.out.printf("1");
                    break;

                case 2: 
                    System.out.printf("2");
                    break;

                case 3:
                    System.out.printf("3");
                    break;

                case 4: 
                    System.out.printf("4");
                    break;

                case 5:
                    System.out.printf("5");
                    break;

                case 6:
                    System.out.printf("6");
                    break;

                case 7: 
                    System.out.printf("7");
                    break;

                case 8:
                    System.out.printf("8");
                    break;

                case 9:
                    System.out.printf("9");
                    break;

                case 10: 
                    System.out.printf("A");
                    break;
                case 11: 
                    System.out.printf("B");
                    break;

                case 12: 
                    System.out.printf("C");
                    break;

                case 13: 
                    System.out.printf("D");
                    break;

                case 14: 
                    System.out.printf("E");
                    break;

                case 15: 
                    System.out.printf("F");
                    break;
            }
            x=x/16;
        }
        System.out.println("");

    }

}
4

6 回答 6

1

while如果只执行一次循环,为什么还需要循环呢?if改为考虑。

没关系,打破while循环怎么样?您可以break;在适用的地方使用来停止执行循环。

例如 :

while (y != 1025) {

    for (int x = 0; x <= y; x++) {
        System.out.println("Decimal");
        System.out.println(x);
    }

    for (int i = 0; i <= y; i++) {
        System.out.println("");
        System.out.println("Binary");
        convertToBinary(i);
    }

    System.out.println("");

    for (int z = 0; z <= y; z++) {
        System.out.println("Hex");
        convertToHex(z);
    }

    System.out.println("");

    for (int d = 0; d <= y; d++) {
        System.out.println("Octal");
        convertToOctal(d);
        System.out.println("");
    }
    break;
}
于 2012-09-26T05:22:41.783 回答
0

在此期间,您没有在任何地方增加 y 的值。因此,对于低于 1025 的 y 值,假设 100.y 始终为 100,并且每次检查条件 y!= 1025 为真。所以,请输入增量y = y + 1或任何内容,它会做。

于 2012-09-26T05:10:28.687 回答
0
while(y !=1025)

在这一行中,您的循环在 ylower than 1025和时工作higher than 1025
也没有改变y value

于 2012-09-26T05:12:28.500 回答
0

正如上面的人所说,它总是会循环。除非 y 发生变化,否则它将始终不等于 1025,除非它的原始值为 1025。

你到底想达到什么目的?你应该包括 y = input.nextInt(); 在循环内部,如果条件为真,循环将中断?

于 2012-09-26T05:25:51.267 回答
0

如果在 while 循环的末尾添加一个 break,它实际上会使 while 循环变得多余。它会循环一次然后退出。如果您只想为 1025 以外的值运行循环,则应使用 if then 语句...

于 2012-09-26T05:29:40.437 回答
0

您的while循环运行无限次的原因是因为您没有更新(可能增加)y. 您可能希望在循环中添加类似以下语句的内容:

y++;

这将y在每次循环迭代时将 的值增加 1

于 2013-08-02T18:38:50.310 回答