题解列表

筛选

回文数字 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int is_right(int m,int n){ int a[6]={0}; int t=……

P1001 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;const int M=10000;int a[M]={……

分糖果 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int is_right(int *s,int n){ int m=s[0]; for(int……

Lucky Word (C++代码)

摘要:解题思路:统计并判断(max-min)差是否为质数质素依旧打表注意事项:字母不存在的不算hhh参考代码:#include <stdio.h> int main() {     int ch; ……