克里里克kliric
克里里克kliric
全部文章
分类
归档
标签
去牛客网
登录
/
注册
克里里克kliric的博客
TA的专栏
132篇文章
0人订阅
C语言基础
132篇文章
167人学习
全部文章
(共132篇)
题解 | #小乐乐计算函数#
来自专栏
#include <stdio.h> int max(int x, int y, int z)//最大函数 { int arr[3] = {0}; arr[0] = x; arr[1] = y; arr[2] = z; int i; in...
2024-11-23
1
7
题解 | #数位五五#
来自专栏
#include <stdio.h> int statistic(int x, int y)//统计个数函数 { int i = 0;//遍历 int k = 0;//计数用 for (i = x; i <= y; i++) { i...
2024-11-22
1
8
题解 | #字符串操作#
来自专栏
#include <stdio.h> int main() { int n, m;//字符数,行数 int l, r;//选取范围 int i = 0; char s[1000] = {0}, c1, c2; scanf("%d %d&...
2024-11-21
1
12
题解 | #矩阵转置#
来自专栏
#include <stdio.h> int main() { int n = 0;//行 int m = 0;//列 scanf("%d %d", &n, &m);//输入 int arr1[n][m]; ...
2024-11-20
1
14
题解 | #回型矩阵#
来自专栏
#include <stdio.h> int main() { int arr[20][20], n;//定义 scanf("%d", &n); int up = 0, left = 0, right = n - 1, down = ...
2024-11-15
1
12
题解 | #有序序列判断#
来自专栏
#include <stdio.h> int main() { int n = 0; scanf("%d", &n);//输入元素个数 int i = 0; int arr[n]; for (i = 0; i <...
2024-11-14
1
8
题解 | #有序序列合并#
来自专栏
#include <stdio.h> int main() { int n = 0; int m = 0; scanf("%d %d", &n, &m);//输入每个数组元素个数 int arr1[n];//定义 ...
2024-11-13
1
15
题解 | #扫雷#
来自专栏
#include <stdlib.h> #include <stdio.h> int main() { int m = 0; int n = 0; scanf("%d %d", &m, &n); char* a = (char*)...
2024-10-06
1
38
题解 | #[NOIP2018]标题统计#
来自专栏
#include <stdio.h> #include <string.h> int main() { char str[1000];//定义一个字符数组大小 int count=0;//统计字符个数 while(scanf("%s&quo...
2024-10-04
1
56
题解 | #序列重组矩阵#
来自专栏
#include <stdio.h> int main() { int a, b;//行,列 scanf("%d %d", &a, &b);//输入 int arr[a][b];//定义二位数组 int i; ...
2024-09-30
1
45
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页