自定义函数之数字后移题解疑问 摘要:```c #define _CRT_SECURE_NO_WARNINGS 1 #include #include void houyi(int* str, int n, int m) …… 文章列表 2022年07月11日 0 点赞 0 评论 255 浏览 评分:0.0
问题1676 结果显示运行错误67 求大佬们指点指点 摘要:#include <stdio.h>#include <stdlib.h>struct LNode { int data; int num; struct LNode *next;};void dat…… 文章列表 2022年07月18日 0 点赞 0 评论 368 浏览 评分:0.0
(2)排序算法总结之选择排序(有错误!!!) 摘要:选择排序: 步骤思想简述: ① 选出最小/最大数字,记录下位置h; 数组如:4 2 1 5 6 3 8  文章列表 2022年07月24日 0 点赞 0 评论 284 浏览 评分:0.0
题目 1115: DNA——备忘录(代码) 摘要:题目: https://www.dotcpp.com/oj/problem1115.html思路:二维数组 + 找规律(分割法)代码:#include<stdio.h>int main(){ int …… 文章列表 2022年07月29日 0 点赞 0 评论 400 浏览 评分:0.0
题目 1017: [编程入门]完数的判断(错误代码,待更正,自我遗留问题) 摘要:1021 1017问题①数据只能读到415 ?????????问题②因子输出因为分别赋在两个数组内,输出顺序不符,需重新排序两个数组#include#include int main() { …… 文章列表 2022年07月29日 0 点赞 0 评论 220 浏览 评分:0.0
Minesweeper(新手扫雷) 摘要:题目: https://www.dotcpp.com/oj/problem1096.html思路:作图,暴力完事代码:#include<stdio.h>int main(){ int a,b,i,j,…… 文章列表 2022年07月30日 0 点赞 0 评论 281 浏览 评分:0.0
c语言每日知识点 摘要:科学计数法的表示:%e数据超限,用int类型存不下来,改用double类型/* 判断位数 */for(i=1;i>0;i++){num/=10;// printf("%d\n",num);if(num…… 文章列表 2022年08月06日 0 点赞 0 评论 198 浏览 评分:0.0
c语言每日知识点 摘要:#include<stdio.h>//二维数组的转置int main(){ int num[3][3] = {0}; int i = 0, j =0; int temp = 0; for(i=0;i…… 文章列表 2022年08月07日 0 点赞 0 评论 243 浏览 评分:0.0
基础链表1(待总结) 摘要:#include <stdio.h> #include <stdlib.h> struct Node //结构体 { int data; &n 文章列表 2022年08月08日 0 点赞 0 评论 291 浏览 评分:0.0
c语言每日知识点 摘要:两个带参宏如何在程序中使用:#include<stdio.h>//宏定义练习之三角形面积#include<math.h>#define S ((a+b+c)/2)#define area sqrt(S…… 文章列表 2022年08月08日 0 点赞 0 评论 278 浏览 评分:0.0