题解列表
编写题解 1119: C语言训练-"水仙花数"问题1
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int back(int a){ int b,c,d; b = a%10; ……
编写题解 1092: A+B for Input-Output Practice
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m; cin>>m; while(m--){……
编写题解 1091: A+B for Input-Output Practice (VII)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ ……
编写题解 1090: A+B for Input-Output Practice (VI)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a;while(cin>>n){ ……
编写题解 1089: A+B for Input-Output Practice (V)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a; int m; ci……
编写题解 1088: A+B for Input-Output Practice (IV)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a; while(true){……
编写题解 1087: A+B for Input-Output Practice (III)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ ……
编写题解 1086: A+B for Input-Output Practice (II)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a,b; cin>>n; ……
蓝桥杯算法提高VIP-快速幂
摘要:基于二进制递归的解题思路#include<iostream>using namespace std;long long a,b;int p;long long pow_mod(long long a,……