当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

1502:9.30(财务问题:信用卡号的合法性)

题目描述

使用信用卡号码作为字符串输入改写练习题5.31。使用下面的方法重新设计这个程序:

    /**Return true if the card number is valid */

public static Boolean isValid(String cardNumber)

 

/**Get the result from Step 2 */

public static int sumOfDoubleEvenPlace(String cardNumber)

 

/**Return this number if it is a single digit; otherwise,

  *return the sum of the two digits */

public static int getDigit(int number)

 

/**Return sum of odd place digits in number */

public static int sumOfOddPlace(String cardNumber)

输入解释
输入信用卡号字符串
输出解释

输出格式

信用卡号 is invalid

信用卡号 is valid

输入样例
4388576018410707
输出样例
4388576018410707 is valid
提示

该题目包含在题集 SSPU

题目来源 sspu

共提交 79

通过率 86.08%
时间上限 内存上限
1000 MS 128 MB