[编程入门]自定义函数处理最大公约数与最小公倍数-题解(C语言代码) 摘要: 代码: #include int w(int a , int b) { int c; while(b!=0) { c…… 题解列表 2020年03月06日 0 点赞 0 评论 691 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:在输出时都用了循环的方式,因为如果课程数目较多,输出语句会很长,用循环能简短一点。 ```c #include #include typedef struct{ char nu…… 题解列表 2020年03月06日 0 点赞 0 评论 592 浏览 评分:0.0
陈教主的三角形-50%错误的,有可能是把判断的逻辑搞混了 摘要: #include int main(void) { int a = 0, b = 0, c = 0; while (EOF != sc…… 题解列表 2020年03月06日 0 点赞 0 评论 351 浏览 评分:0.0
首字母大写-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ char a[100]; w…… 题解列表 2020年03月06日 0 点赞 0 评论 824 浏览 评分:0.0
计算两个矩阵的乘积-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ int a[2][3],b[3][2]…… 题解列表 2020年03月06日 0 点赞 0 评论 1027 浏览 评分:0.0
蓝桥杯基础练习VIP-阶乘计算-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int num[10000] = {1}; int main() { ios::sync_wi…… 题解列表 2020年03月06日 0 点赞 0 评论 614 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:```c #include int main() { int a[6][6],max=-999999; int n,i,j,r,c; scanf("%d",&n); for(i=…… 题解列表 2020年03月06日 0 点赞 0 评论 531 浏览 评分:0.0
IP判断-题解(C语言代码) 摘要:#include void safe_flush(FILE *fp) { int ch; while( (ch = fgetc(fp)) != EOF && ch != '\n' ); …… 题解列表 2020年03月06日 0 点赞 0 评论 1269 浏览 评分:0.0
[编程入门]链表合并-题解(C语言代码) 摘要:#include #include struct date { int id; int num; struct date *next; }; typedef struc…… 题解列表 2020年03月06日 0 点赞 0 评论 597 浏览 评分:0.0
蓝桥杯算法提高VIP-和最大子序列-题解(C++代码)简单版 摘要:```cpp #include using namespace std; int Max(int a[],int n){ int max=0,t=0;//max的目的比较最后的和谁大,t用…… 题解列表 2020年03月06日 0 点赞 0 评论 617 浏览 评分:0.0