牛客688983736号
牛客688983736号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客688983736号的博客
全部文章
(共5篇)
题解 | #牛牛的digit#
// #include <stdio.h> // #include <string.h> // int main(){ // char arr[2...
C
递归
2022-06-19
2
512
题解 | #牛牛的数组匹配#
#include <stdio.h> #include <math.h> int* compute(int arr2[], int m, int i, int sum1,&n...
2022-06-16
2
555
题解 | #井字棋#
#include <stdio.h> #define ROW 3 #define COL 3 char judge(char board[ROW][COL], int row, int&...
数组
C
2022-06-13
5
581
题解 | #矩阵交换#
#include <stdio.h> #define ROW 10 #define COL 10 void translation_row(int arr[ROW][COL], int row1,...
2022-06-13
1
411
题解 | #牛牛的字符菱形#
#include <stdio.h> int main(){ int arr[5] = {1, 3, 5, 3, 1}; &...
C/C++
2022-05-19
20
401