题解 1273: ISBN码

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

P1006 (C++代码)

摘要:#include"bits/stdc++.h" using namespace std; int main() { string a; cin >> a; int len = a.s……

P1006 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,d,i,k;    long sum;    char IP[100];    get……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main  { public static void main(String[] args)     ……

ISBN码利用ASCII表

摘要:解题思路:灵活利用ASCII表注意事项:参考代码:# include <iostream> # include <string> using namespace std; int main(……

P1006(Java代码) 模拟

摘要:解题思路:     字符串操作注意事项:     注意识别码为 X 的特殊情况的处理参考代码:import java.util.Scanner; /**  * 2021年2月16日  下午8:……

ISBN码(c语言代码)

摘要:```c #include char Check(char* strs); int main() { char ISBN[14] = { 0 }; gets(ISBN); ……

【Python题解】ISBN码

摘要:# 解题思路 整体思路比较简单,注意如果为10,将其转换为X,具体实现看代码: # 参考代码 ```python while True: try: # raw ……