lrc解析 other.h 2 摘要://other.h文件#ifndef __OTHER_H__ //防止重定义格式#define __OTHER_H__struct lrc { //定义一个链表串起时间和歌词 …… 文章列表 2023年07月08日 0 点赞 0 评论 94 浏览 评分:0.0
lrc解析 main.c 1 摘要://main.c#include<stdio.h>#include<ctype.h>#include<stdlib.h>#include<string.h>#include<time.h>#inclu…… 文章列表 2023年07月08日 0 点赞 0 评论 63 浏览 评分:0.0
母牛的简单解法C语言 摘要:int number_cow(int year){ int number[55],i; number[0] = 0; number[1] = 1; number[2] = 2;…… 文章列表 2023年07月07日 0 点赞 0 评论 102 浏览 评分:9.9
大连交通大学五年制C语言试卷七 考试笔记 摘要:7、在所有函数之前,定义一个外部变量的形式为static int x;那么错误的叙述是( )。正确答案:A A. x的值不可以永久保留 B. 将变量存放在静态存储区 …… 文章列表 2023年07月07日 0 点赞 0 评论 153 浏览 评分:0.0
大连交通大学五年制C语言试卷三 考试笔记 摘要:5、在以下给出的表达式中,与do-while(E)语句中的(E)不等价的表达式是( )。答案:B A. (E>0||E<0) B. (E==0) C. (!E…… 文章列表 2023年07月07日 0 点赞 0 评论 103 浏览 评分:0.0
大连交通大学五年制C语言试卷十 考试笔记 摘要:15、已知a=3,b=4,c=5,则逻辑表达式!(a>b) && !c||1的值为1。【解析】:0&&0||1=1,&&的优先级比||的高21、gets函数用来输入一个字符串。(正确)【解析】:注意看…… 文章列表 2023年07月07日 0 点赞 0 评论 72 浏览 评分:9.9
结算界面不能自动提取用户信息 摘要:结算界面不能自动提取用户信息结算界面不能自动提取用户信息结算界面不能自动提取用户信息结算界面不能自动提取用户信息结算界面不能自动提取用户信息结算界面不能自动提取用户信息结算界面不能自动提取用户信息结算…… 文章列表 2023年07月05日 0 点赞 0 评论 135 浏览 评分:9.9
插入排序C++ 摘要:```cpp #include #include using namespace std; void insert_sort(vector &nums){ int n = nums.…… 文章列表 2023年07月05日 0 点赞 0 评论 121 浏览 评分:0.0
归并排序C++ 摘要:```cpp #include #include using namespace std; void merge(vector& nums, int left, int mid, int ri…… 文章列表 2023年07月05日 0 点赞 0 评论 149 浏览 评分:0.0
快速排序C++ 摘要:```cpp #include #include using namespace std; int part(int* r, int low, int hight) //划分函数 { …… 文章列表 2023年07月05日 0 点赞 0 评论 134 浏览 评分:0.0