题解列表

筛选

与2无关的数 (C语言代码)

摘要:解题思路:注意看清楚题目,找出与2相关的数,或者找出与2无关的数求和即可。注意事项:参考代码:#include <stdio.h> int main() {     int n,sum=0,i,……

Mark11:第一次写C++

摘要:#include<cstdio> #include<cstring> #include<algorithm> const int maxn = 100; using namespace std……

汪汪剪指甲 (C语言代码)

摘要:解题思路:            深度优先搜索注意事项:参考代码:#include<stdio.h> #include<string.h> int flag;//作为是否能够到达目的点的标记 ……