题解列表

筛选

龟兔赛跑预测 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int v1,v2,t,s,l; while(ci……

Pascal三角 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { int n; ……

简单的a+b (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (void){    int a = 0,b = 0;     printf("请输入A和B的值:");    sca……

数据结构-静态链表 (C++代码)

摘要:解题思路:注意事项:参考代码:麻烦的要死的题目:#include <stdio.h>   #include <string.h>      #define MAXSIZE 11         ……