我在 eclipse 平台上编译了我的 java 程序和 运行 并且还提供了输入但没有得到输出?程序有任何逻辑错误

i compiled my java program and run in eclipse platform and also provide input but not got the output? There is any Logical Error in program

这是基于选择的 Java 程序。因此,在这些程序中,用户必须提供 V 素食者和 N 非素食者,并且数量和距离将采用整数值。因此,当我保存 运行 程序时,它采用用户参数的值但没有打印输出,我还在 eclipse 编辑器中检查了错误。

#程序

'''

package demo;
import java.util.Scanner;

public class FoodCorner {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int vegCombo = 12;
        int nonvegCombo = 15;
        int totalCost = 0;
        int charge = 0;
        
        System.out.println("Enter the type of Food Item as Vegeterian 'V' and for Non-Vegeterian as 'N'");
        String foodType = scan.nextLine();
        System.out.println("Enter the Quantity of food Item");
        int quantity = scan.nextInt();
        System.out.println("Enter the Distance for delivery");
        float distance = scan.nextFloat();
        
        while(distance > 3) {
            charge++;
            distance = distance - 3;
        }
        
        if(distance > 0 && quantity >= 1) {         
            if(foodType == "V") {
                totalCost = (vegCombo * quantity) + charge;
                System.out.println("The total cost of your order is: "+totalCost);
            }
            else if(foodType == "N") {
                totalCost = (nonvegCombo * quantity) + charge;
                System.out.println("The total cost of your order is: "+totalCost);
            }
        }
        
        else {
            System.out.println("the bill amount is -1");
        }
        
    }
}

'''

使用下面的代码片段。注意行 if("V".equals(foodType)) 而不是 if(foodType == "V").

public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int vegCombo = 12;
        int nonvegCombo = 15;
        int totalCost = 0;
        int charge = 0;

        System.out.println("Enter the type of Food Item as Vegeterian 'V' and for Non-Vegeterian as 'N'");
        String foodType = scan.nextLine();
        System.out.println("Enter the Quantity of food Item");
        int quantity = scan.nextInt();
        System.out.println("Enter the Distance for delivery");
        float distance = scan.nextFloat();

        while(distance > 3) {
            charge++;
            distance = distance - 3;
        }

        if(distance > 0 && quantity >= 1) {
            if("V".equals(foodType)) {
                totalCost = (vegCombo * quantity) + charge;
                System.out.println("The total cost of your order is: "+totalCost);
            }
            else if("N".equals(foodType)) {
                totalCost = (nonvegCombo * quantity) + charge;
                System.out.println("The total cost of your order is: "+totalCost);
            }
        }

        else {
            System.out.println("the bill amount is -1");
        }

    }