爱交友的马后炮炮手在创作
爱交友的马后炮炮手在创作
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱交友的马后炮炮手在创作的博客
全部文章
(共28篇)
题解 | #对称矩阵#
#include <stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF){ int a[n][n]; int tag=1; int temp; for(...
2024-03-03
0
262
题解 | #最小年龄的3个职工#
#include <stdio.h> #include<string.h> typedef struct emp{ int no; char name[100]; int age; } emp; void sort(emp e[],int n){ ...
2024-03-03
0
166
题解 | #矩阵最大值#
#include <stdio.h> int main() { int a,b; while(scanf("%d %d",&a,&b)!=EOF){ int len=a*b; int array[a][b]; ...
2024-03-03
0
189
题解 | #守形数#
#include <stdio.h> void check(int temp){ int a=temp*temp; int max=1; while(1){ if(temp/max==0){ break; }...
2024-03-02
0
179
题解 | #遍历链表#
#include <stdio.h> #include <stdlib.h> typedef struct linknode{ struct linknode * next; int value; }linknode,*linklist; int main()...
2024-03-02
0
205
题解 | #成绩排序#
#include <stdio.h> #include <string.h> typedef struct student{ char name[100]; int age; int score; }student; int compare(char...
2024-03-02
0
186
题解 | #最大的两个数#
#include <stdio.h> void chuli(int a[4][5]){ int b[2][5]; int index[2][2]={0};//第一列数值 第二列源行号 int temp[2]={0}; for(int j=0;j<5;...
2024-03-02
0
228
题解 | #奇偶校验#
#include <stdio.h> #include <string.h> void check(char c){ int a[8]={0}; int b=c; memset(a,0,sizeof(a));//此函数在string.h内部 i...
2024-03-02
0
211
题解 | #二叉树遍历#
#include <stdio.h> #include<string.h> #include<stdlib.h> typedef struct tree{ struct tree* lchild; struct tree *rchild; ...
2024-03-02
0
186
题解 | #特殊排序#
#include <stdio.h> void sort(int a[],int n){ for(int i=0;i<n;i++){ for(int j=0;j<n-i-1;j++){ if(a[j]>a[j+1]){ ...
2024-03-02
0
169
首页
上一页
1
2
3
下一页
末页