La ejecución del bucle Do While en el programa de la calculadora de Java

Yogi Raj:

En mi programa Java, he utilizado una 'decisión' variable booleana que debe ejecutar el código calculadora real en el 'bloque de hacer código de bucle' sólo cuando la variable es cierto, pero el hacer mientras bucle se ejecuta de todos modos, incluso cuando la variable de decisión es falso. Estoy usando Eclipse IDE para Java JDK y 10 (ambos son versiones recientes). Por favor, ayúdame con una solución. El código es la siguiente

import java.util.Scanner;

public class apples {

public static void main(String[] args) {

    int option,a,b,c;
    boolean decision;
    System.out.println("We are here to create a calculator");
    System.out.print("Do you want to switch on the calculator:");
    Scanner yogi = new Scanner(System.in);
    decision = yogi.nextBoolean();
    do {
        System.out.println("Following operations are available to perform:");
        System.out.println("1. Addition");
        System.out.println("2. Subtraction");
        System.out.println("3. Multiplication");
        System.out.println("4. Division");
        System.out.print("Enter the operations do you want to perform:");
        option = yogi.nextInt();
        System.out.println("Choice of operation is:"+option);

        switch(option) {

        case 1:
            System.out.println("Enter two numbers to be added:");
            a = yogi.nextInt();
            b = yogi.nextInt();
            c = a + b;
            System.out.print("Addition:"+c);
            break;

        case 2:
            System.out.println("Enter two numbers to be subtracted:");
            a = yogi.nextInt();
            b = yogi.nextInt();
            c = a - b;
            System.out.print("subtracted:"+c);
            break;

        case 3:
            System.out.println("Enter two numbers to be multiplied:");
            a = yogi.nextInt();
            b = yogi.nextInt();
            c = a * b;
            System.out.print("multiplied:"+c);
            break;

        case 4:
            System.out.println("Enter two numbers to be divided:");
            a = yogi.nextInt();
            b = yogi.nextInt();
            c = a / b;
            System.out.print("divided:"+c);
            break;

        default:
            System.out.println("This is a wrong choice");
            break;
        }
    }while(decision==true);
  }
}
Gokul Nath KP:

el do while se ejecuta de todos modos, incluso cuando la variable de decisión es falsa

Una do...whilevoluntad ejecuta el cuerpo una vez antes de comprobar el estado.

O bien modificar el código para whileo agregar una if-elseenvolvente do...while.

Supongo que te gusta

Origin http://43.154.161.224:23101/article/api/json?id=192073&siteId=1
Recomendado
Clasificación