软件2001-20206821-傅子文
软件2001-20206821-傅子文
全部文章
分类
归档
标签
去牛客网
登录
/
注册
软件2001-20206821-傅子文的博客
全部文章
(共21篇)
题解 | #遍历链表#
#include <stdio.h> typedef struct Node { int value; struct Node* next; } Node; int main() { int n; while (scanf("%d "...
2024-03-17
0
160
题解 | #阶乘#
#include <stdio.h> //阶乘函数 long factorial(int n){ long ret=1; for(int i=1;i<=n;i++){ ret*=i; } return ret; } int mai...
2024-03-17
0
169
题解 | #字符串连接#
#include <stdio.h> int main() { char a[100], b[100]; char c[200]; while (scanf("%s %s", a, b) != EOF) { int i, j ...
2024-03-17
0
198
题解 | #最小年龄的3个职工#
#include <stdio.h> #include <string.h> typedef struct { int empId; char name[10]; int age; } Employee ; Employee employeeArra...
2024-03-17
0
184
题解 | #最小年龄的3个职工#
#include <stdio.h> #include <string.h> typedef struct { int empId; char name[10]; int age; } Employee ; Employee employeeArra...
2024-03-17
0
145
题解 | #对称矩阵#
#include <stdio.h> #include <string.h> char a[1000][1000]; //i是矩阵的维度 //i+1到i+dimension是矩阵的数据 //对矩阵数据进行判断,最后输出结果 void judge(int i, int dim...
2024-03-17
0
211
题解 | #最长&最短文本#
#include <stdio.h> #include <string.h> int main() { char a[100][1000]; int max = 0, min = 999, i = 0; while (gets(a[i])) { //...
2024-03-16
0
126
题解 | #守形数#
#include <stdio.h> int main() { int a; while (scanf("%d", &a) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf(...
2024-03-16
0
171
题解 | #奇偶校验#
#include <stdio.h> #include <string.h> #include<stdlib.h> int main() { char a[100]; while (scanf("%s", &a) !=...
2024-03-16
0
186
题解 | #二叉树遍历#
#include<stdio.h> #include<string.h> #include<malloc.h> typedef struct tree { struct tree *left; struct tree *right; ...
2024-03-16
0
167
首页
上一页
1
2
3
下一页
末页