题解列表
1676: 数据结构-链表的基本操作(待分析,分析明儿再说)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef struct Node {
……
编写题解 1033: [编程入门]自定义函数之字符提取
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
int fun(char a[],char b[])
{
int l=s……
[编程入门]求和训练 常规做法
摘要:```c
#include
#include
int main()
{
float a,b,c,i;
float sum1=0,sum2=0,sum3=0;
scanf("%f%f……
题解 1063: 二级C语言-统计字符(C语言数组+for循环+gets()函数实现)
摘要:解题思路:上次是用while循环,getchar()函数进行输入,实现的统计,文章链接:https://blog.dotcpp.com/a/88928本次用的gets()函数向数组中写入数据,再用fo……
可ACAC1111111111111111111111
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { int sum1=0,s……
二级C语言-等差数列 简单小白
摘要:```c
#include
int main()
{
int sum=0,i,x=2,n;
scanf("%d",&n);
for(i=0;i……
使用实现区间查询最小值,和的线段树
摘要:解题思路:看注释注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 1000010#define INF 1000010……