不使用循环,将ISBN-10的前9位数字作为字符串读取并计算第10位数

时间:2018-04-23 10:09:14

标签: c++ string

我遗漏了章节中的内容;我前后都读过它们,但我认为我需要某种一般的指导。

不允许使用loops,我已阅读JAVAPython示例。

我应该修改我的第一个(顶部)代码以使用getline使用字符串输入然后计算ISBN-10的最后一位数。

输入013601267后,我不确定为什么在修改后的代码中第10位的校验和后,我的输出为5。值应为1

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
  cout
  << "Enter the first nine digits as integerss of an ISBN.."
  <<endl;
  int d1, d2, d3, d4, d5, d6, d7, d8, d9;
  int d10;
  cin
  >> d1
  >> d2
  >> d3
  >> d4
  >> d5
  >> d6
  >> d7
  >> d8
  >> d9;
  d10 = ( d1 * 1 + d2 * 2 + d3 * 3 + d4 * 4 + d5 * 5 + d6 * 6 + d7 * 7 + d8 * 8 + d9 * 9 ) % 11;
  if ( d10 > 9)
  {
    cout
    << "d10: "
    << d10
    << endl
    <<"The corresponding ISBN-10 is... "
    << d1
    << d2
    << d3
    << d4
    << d5
    << d6
    << d7
    << d8
    << d9
    << 'X'
    << endl;
  }
  else
  {
    cout
    << "d10: "
    << d10
    << endl
    <<"The corresponding ISBN-10 is... "
    << d1
    << d2
    << d3
    << d4
    << d5
    << d6
    << d7
    << d8
    << d9
    << d10
    <<endl;
  }
  return 0;
}

下面是修改后的代码,如果我成功了,我将把ISBN连接到d10,但是当我试图看看数学索引元素的值是什么时,我将它们分开了。

#include <iostream>
#include <string>
#include <cmath>


using namespace std;

int main()
{
  cout
  << "Enter the first nine digits of an ISBN-10..."
  << endl;
  string ISBN;
  getline(cin, ISBN, '\n');

  int d10 = ( ISBN[0] * 1 + ISBN[1] * 2 + ISBN[2] * 3 + ISBN[3] * 4 + ISBN[4] * 5 + ISBN[5] * 6 + ISBN[6] * 7 + ISBN[7] * 8 + ISBN[8] * 9 ) % 11;


  cout

  << d10
  << endl
  << ISBN
  << endl;

  return 0;
}

1 个答案:

答案 0 :(得分:5)

std::string字符的数组,而不是整数。并且在c ++中'1'不等于1

您正在做的是添加字符ascii代码。您需要做的是更改d10计算,如下所示:

int d10 = ( (ISBN[0] - '0') * 1 + (ISBN[1] - '0') * 2 + (ISBN[2] - '0') * 3 + (ISBN[3] - '0') * 4 + (ISBN[4] - '0') * 5
 + (ISBN[5] - '0') * 6 + (ISBN[6] - '0') * 7 + (ISBN[7] - '0') * 8 + (ISBN[8] - '0') * 9 ) % 11;

要将字符转换为实际整数值(我的意思是'1' -> 1),您需要执行以下操作:

char a = '1';
int ia = a - '0'; //ia == 1