问题 :
ISBN-10 由 10 位数字组成:d1,d2,d3,d4,d5,d6,d7,d8,d9,d10。最后一位数字 d10 是校验和,使用 以下公式从其他九位数字计算得出:
(d1 * 1 + d2 * 2 + d3 * 3 + d4 * 4 + d5 * 5 + d6 * 6 + d7 * 7 + d8 * 8 + d9 * 9) % 11
如果校验和为 10,则根据 ISBN-10 约定,最后一位数字表示为 X。
编写一个程序,提示用户输入前 9 位数字并显示 10 位数字 ISBN(包括前导零)。您的程序应该将输入读取为整数。
以下是示例运行:
输入 ISBN 的前 9 位整数:013601267
ISBN-10 编号为 0136012671
我的代码:
import java.util.Scanner;
public class ISBN_Number {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
int[] num = new int[9];
System.out.println("Enter the first 9 digits of the an ISBN as integer: ");
for (int i = 0; i < num.length; i++) {
for (int j = 1; j < 10; j++) {
num[i] = s.nextInt() * j;
}
}
int sum = 0;
for (int a = 0; a < 10; a++) {
sum += num[a];
}
int d10 = (sum % 11);
System.out.println(d10);
if (d10 == 10) {
System.out.println("The ISBN-10 number is " + num + "X");
} else {
System.out.println("The ISBN-10 number is" + num);
}
}
}
问题: 我是学习 java 的新手,因此我在尝试解决这个问题时遇到了麻烦。有人可以告诉我哪里出错了,因为我没有得到预期的结果。谢谢你。