lrc解析 main.c 1 摘要://main.c#include<stdio.h>#include<ctype.h>#include<stdlib.h>#include<string.h&g…… 文章列表 2023年07月08日 0 点赞 0 评论 48 浏览 评分:0.0
lrc解析 other.h 2 摘要://other.h文件#ifndef__OTHER_H__&nbsp;//防止重定义格式#define__OTHER_H__structlrc{&nbsp;&nbsp;&…… 文章列表 2023年07月08日 0 点赞 0 评论 65 浏览 评分:0.0
lrc解析器 other.c 3 摘要://other.c#include<stdio.h>#include<ctype.h>#include<stdlib.h>#include<string.h&…… 文章列表 2023年07月08日 0 点赞 0 评论 50 浏览 评分:0.0
堆排序,提取前K个值 摘要:```cppclassSolution{public://维护堆的性质voidmaxHeapify(vector&nums,intchange,intHeapSize){intlarge=ch…… 文章列表 2023年07月09日 0 点赞 0 评论 65 浏览 评分:0.0
错题笔记(关于逗号运算符的) 摘要:有以下程序:fun(intx,inty){returnx+y;}main(){inta=1,b=2,c=3,sum;sum=fun((a++,b++,a+b),c++);printf("%d…… 文章列表 2023年07月12日 0 点赞 0 评论 139 浏览 评分:0.0
题目 1148: C语言训练-计算1977!* 摘要:#include<stdio.h>intmain(){intn=1977;inta[20000];intcarry;intj,i;intdigit=1;inttemp;a[0]=1;for…… 文章列表 2023年07月15日 0 点赞 0 评论 110 浏览 评分:0.0
题目 1151: C语言训练-计算一个整数N的阶乘 摘要:#include<stdio.h>intmain(){intn=0;scanf("%d",&n);longlongintsum=1;if(n<0){&am…… 文章列表 2023年07月15日 0 点赞 0 评论 89 浏览 评分:0.0
数字逆序输出(do-while) 摘要:```c#includeintmain(){intn,s;scanf("%d",&n);do{s=n%10;//取个位,打印出printf("%d",s…… 文章列表 2023年07月15日 0 点赞 0 评论 70 浏览 评分:0.0
错题笔记(关于数组在函数的调用) 摘要:题目:下面程序的运行结果是**18**```c#includeintf(inta[],intn){if(n>1){returna[0]+f(a+1,n-1);}else{returna[0];}…… 文章列表 2023年07月15日 0 点赞 0 评论 66 浏览 评分:0.0
错题笔记(循环) 摘要:题目:下面程序的功能是:将N行N列二维数组中每一行的元素进行排序,第0行从小到大排序,第1行从大到小排序,第2行从小到大排序,第三行从大到小排序,例如:```c#defineN4voidsort(in…… 文章列表 2023年07月17日 0 点赞 0 评论 55 浏览 评分:0.0