目前,我正在尝试编写一个程序,在该程序中要求用户输入一个基于14的数字,然后将它射出一个基于14的数字。提示如下...
“外来物种使用基于14的编号系统。它们的10位数字(从0到9)与我们的相同
十进制。他们分别使用A,J,Q和K代表十进制10、11、12和13。他们
雇用您编写一个Java程序来对两个数字求和。
该程序应提示用户输入两个基于14的数字,然后显示这些数字的总和
两个数字。输出也应该基于14。 (他们不愿意学习我们的十进制系统!)
例如,如果输入为17和96,则输出应为AK。”

当我输入17和96时,它会射出AK,这就是我想要的。当我输入类似1Z的内容时,它会弹出“您的第一个/第二个输入无效”,这也是预期的。但是,当我输入类似1A或j1之类的内容时,尽管应该通过,但也会给我同样的错误“您的第一个/第二个输入无效”。我觉得我在validateinput方法中做错了什么,但我不太确定。任何帮助将不胜感激。谢谢!
谢谢,

在此处输入代码

import java.util.Scanner;

public class H5_hieu {

   public static void main(String[] args)
   {
       System.out.println("Please enter a 14 base value: ");
       Scanner input = new Scanner(System.in);
       String first = input.nextLine();
       String second = input.nextLine();
       boolean isFirstValid = validateInputs(first);
       boolean isSecondValid = validateInputs(second);
       while (!isFirstValid || !isSecondValid){
          if (!isFirstValid){
            System.out.println("Your first input is invalid");
          }
          if (!isSecondValid){
            System.out.println("Your second input is invalid");
          }
          System.out.println("Please enter a 14 base value: ");

          first = input.nextLine();
          second = input.nextLine();
          isFirstValid = validateInputs(first);
          isSecondValid = validateInputs(second);
       }

       int firstInDecimal = convertFrom14To10(first.toUpperCase());
       int secondInDecimal = convertFrom14To10(second.toUpperCase());
      System.out.println(convertFrom10To14( firstInDecimal + secondInDecimal));




   }

   public static boolean validateInputs(String input) {
      for ( int i = 0;i < input.length(); i++){
         char currentChar = input.charAt(i);
         if (!Character.isDigit(currentChar) && (currentChar != 'A' || currentChar != 'J' || currentChar != 'Q' || currentChar != 'K' || currentChar != 'a' || currentChar != 'j' || currentChar != 'q' || currentChar != 'k')) {
            return false;
         }
      }
      return true;
   }



   public static String convertFrom10To14(int input){
      boolean done = false;
      int quotient = input;
      int remainder = 0;
      String result = "";
      while (!done) {
         remainder = quotient % 14;

         quotient = quotient / 14;


         //System.out.println("quotient: " + quotient + " remainder: " + convertDigit(remainder));
         result = convertDigit(remainder) + result ;

         if (quotient == 0)
            done = true;
      }
      return result;
  }

   public static int convertFrom14To10(String input) {

      int length = input.length();
      int result = 0;

      for(int i = 0; i < length; i++){

         char currentChar = input.charAt(i);
         //System.out.println("Character at index " + i + " : " + currentChar);
         int valueOfChar = getCoeff(currentChar);
       // System.out.println("Decimal value of currentChar: " + valueOfChar);
         int power = length - 1 - i;
         //System.out.println("Power: " + power);
         result = result + (valueOfChar * (int)Math.pow(14, power));
        //System.out.println();
      }
     // System.out.println("Decimal of " + input + " is: " + result + "\n");
      return result;
   }

   public static int getCoeff(char character) {
      if (character == 'A'){
         return 10;
      } else if (character == 'J'){
         return 11;
      } else if (character == 'Q'){
          return 12;
      } else if (character == 'K'){
          return 13;
      } else {
          return Integer.parseInt(String.valueOf(character));
      }

    }
    public static String convertDigit( int number)
    {
    if (number == 10){
      return "A";
    } else if ( number == 11){
         return "J";
      } else if (number == 12){
           return "Q";
        } else if (number == 13){
            return "K";
          } else {
               return String.valueOf(number);
               }
    }


  }

最佳答案

您的validateInput()方法确实是问题所在。 “ ||”运算符是逻辑或,表示任何带字母的输入都会失败。我认为您需要“ &&”运算符,这是合乎逻辑的。

10-05 18:20