题解列表

筛选

编写题解 1074: 数字整除

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(int argc, char *argv[]) { int n,i,g; in……

麻烦的解法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,d,e,x,t;    scanf("%d",&x);        if(x/1<1……

动态规划 路径问题

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int T,N,A[100][100],B[100][100]……

Ikaros-打印图案 C++解决

摘要:解题思路:对齐打印即可参考代码:#include<iostream>using namespace std;int main(){ cout << "  *" << endl; cout << " *……