克里里克kliric
克里里克kliric
全部文章
分类
归档
标签
去牛客网
登录
/
注册
克里里克kliric的博客
TA的专栏
151篇文章
1人订阅
C语言基础
151篇文章
252人学习
全部文章
(共151篇)
题解 | #数位五五#
来自专栏
#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
34
题解 | #字符串操作#
来自专栏
#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
30
题解 | #矩阵转置#
来自专栏
#include <stdio.h> int main() { int n = 0;//行 int m = 0;//列 scanf("%d %d", &n, &m);//输入 int arr1[n][m]; ...
2024-11-20
1
40
题解 | #回型矩阵#
来自专栏
#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
53
题解 | #有序序列判断#
来自专栏
#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
25
题解 | #有序序列合并#
来自专栏
#include <stdio.h> int main() { int n = 0; int m = 0; scanf("%d %d", &n, &m);//输入每个数组元素个数 int arr1[n];//定义 ...
2024-11-13
1
79
题解 | #扫雷#
来自专栏
#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
59
题解 | #[NOIP2018]标题统计#
来自专栏
#include <stdio.h> #include <string.h> int main() { char str[1000];//定义一个字符数组大小 int count=0;//统计字符个数 while(scanf("%s&quo...
2024-10-04
1
84
题解 | #序列重组矩阵#
来自专栏
#include <stdio.h> int main() { int a, b;//行,列 scanf("%d %d", &a, &b);//输入 int arr[a][b];//定义二位数组 int i; ...
2024-09-30
1
59
题解 | #牛牛的短信#
来自专栏
#include <stdio.h> float f(int x)//实现遍历统计短信费用的函数 { int arr[x]; int i = 0; for (i = 0; i < x; i++) { scanf("%d &...
2024-09-25
1
64
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页