指针/引用练习之交换数字 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int swap(int *a,int *b){ int temp; temp=*a; *a=*b; *b=temp; return …… 题解列表 2024年08月30日 0 点赞 0 评论 399 浏览 评分:9.9
1159题解(C语言) 摘要:```c #include #define MAX 101 void fun(int n, int m) { int a[MAX]; // 存储生成的数字的数组 int …… 题解列表 2024年08月30日 0 点赞 0 评论 504 浏览 评分:0.0
判断一年的第几天 摘要:参考代码:#include<stdio.h>struct date { int year; int month; int day;};int main() { struct d…… 题解列表 2024年08月31日 1 点赞 0 评论 139 浏览 评分:9.9
蓝桥杯2023年第十四届省赛真题-冶炼金属 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n; scanf("%d",&n); int max=1000000000,min=…… 题解列表 2024年08月31日 0 点赞 0 评论 612 浏览 评分:10.0
1160: 出圈 (vector , 公式法) 摘要:解题思路:Vector注意事项:删除元素的位置在末尾的时候,需要注意初始化为0参考代码:#include#include using namespace std; int main() { …… 题解列表 2024年08月31日 0 点赞 0 评论 164 浏览 评分:9.9
循环链表解法(c语言代码) 摘要:```c #include #include // 定义链表节点结构体 typedef struct node { int data; // 节点存…… 题解列表 2024年08月31日 0 点赞 0 评论 128 浏览 评分:9.9
循环链表解法(c语言代码) 摘要:我是很不想用链表的,因为每次写完都有一堆bug,因为链表很容易访问到空指针。但是我更不想用数组,数组太费脑子了。 ```c #include #include // 定义链表节点结构体…… 题解列表 2024年08月31日 0 点赞 1 评论 376 浏览 评分:9.9
大象喝水零基础题解 摘要:我们先敲出来C语言的基础框架#include <stdio.h>int main(){ return 0 ;}题目是说问大象喝几桶才能喝够20升同时输入的是cm,这两个很明显不是对应的关系,需要…… 题解列表 2024年08月31日 0 点赞 0 评论 343 浏览 评分:9.9
各位大佬看看我的 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void SumAge(char a[4]) { for (size_t i = 0; i <4; i++) { …… 题解列表 2024年08月31日 1 点赞 0 评论 183 浏览 评分:0.0
计算三角形面积 摘要:#include<stdio.h>#include<math.h> //主要是用pow函数double changdu(double x1,double x2,double y1,double y2)…… 题解列表 2024年08月31日 0 点赞 0 评论 256 浏览 评分:8.0