我需要帮助从字符串转换为整数,我已经搜索过 并没有找到任何可以帮助我解决这个具体问题的东西。
这就是我到目前为止得到的..(代码下来)
现在组合前 5 位数字后(例如 1+2+3+4+5=12345) 我需要将这个数字修改为 7 (12345%7)
但它一直给我下一个错误 -
java.lang.number.formatException 对于输入字符串: FiveDigits:(在 java.lang.number.formatexception 中)
任何有关如何修复它的指南将不胜感激。 谢谢。
if(creditCard<=99999||creditCard>=1000000)
System.out.println("Your credit card is not valid. You cannot buy the ticket");
else
{
ones = creditCard%10;
tens = (creditCard%100)/10;
hundreds = (creditCard%1000)/100;
thousands = (creditCard%10000)/1000;
tensOfThousands = (creditCard%100000)/10000;
hunOfThousands = (creditCard%1000000)/100000;
String fiveDigits = "" + hunOfThousands+tensOfThousands+thousands+hundreds+tens;
int firstFiveDigits = Integer.parseInt("fiveDigits");
int remainder = firstFiveDigits%7;
if(remainder==ones)
System.out.println("Your credit card is valid. Bon Voyage!");
else
System.out.println("Your credit card is not valid. You cannot buy the ticket");
删除变量 FiveDigits 周围的引号
int firstFiveDigits = Integer.parseInt( FiveDigits);
int firstDigits = (allDigits - allDigits%10)/10;
虽然不好,但更好...
您可以使用“真实”CC 数字作为字符串进行操作(因为它们很长) - 只需将您的
allDigitsAsString
作为输入,然后
String firstDigitsAsString = allDigitsAsString.substring(0, allDigitsAsString.length() - 1);
int firstDigits = Integer.parseInt(firstDigitsAsString);
为了获得奖励积分,请向支付处理器存根添加一些模拟调用。
(我需要)“信用卡”(信息),上面至少有 80 美元,谢谢