编写题解 1273: ISBN码
摘要:解题思路:注意事项:参考代码:d = 0a = input()b = []for i in a: if i.isdigit(): b.append(int(i))for x in ……
应该考虑到判断的先后顺序也会影响到结果
摘要:解题思路:注意事项:参考代码:l2=input()l1=list(l2.split('-'))n=0s=0##print(l1[0]+l1[1]+l1[2])for i in l1[0……
ISBN码(c语言代码)
摘要:```c
#include
char Check(char* strs);
int main()
{
char ISBN[14] = { 0 };
gets(ISBN);
……
1273: ISBN码(c++代码)
摘要:```cpp
#include
using namespace std;
int main()
{
string s;
while(cin>>s)
{
……
c语言题解c语言题解c语言题解
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>#include<math.h>int main(){ ……
【Python题解】ISBN码
摘要:# 解题思路
整体思路比较简单,注意如果为10,将其转换为X,具体实现看代码:
# 参考代码
```python
while True:
try:
# raw ……
1273: ISBN码(简介代码)
摘要:解题思路:先解释一下题目,要求检查识别码是否正确,识别码是最后一位的数字0-670-82162-4,这里最后一位的4就是识别码。4=(0×1+6×2+……+2×9)%11;注意如果最后得10,识别码为……
有点繁琐,不过有注释
摘要:参考代码:ISBN=input()x=ISBN.replace('-','') #把ISBN号的-去除X=[] #存储ISBN号尾不为X的ISBN数字a="" #存储I……
ISBN码利用ASCII表
摘要:解题思路:灵活利用ASCII表注意事项:参考代码:# include <iostream>
# include <string>
using namespace std;
int main(……