木何
木何
全部文章
分类
归档
标签
去牛客网
登录
/
注册
木何的博客
全部文章
(共16篇)
题解 | #找位置#
#include<iostream> #include<string.h> using namespace std; int main() { string s; while (cin >> s) { int* k; ...
2023-02-28
0
326
题解 | #打印日期#
#include<iostream> #include<cstdio> using namespace std; int main() { int y, m, d, n; int a[2][12] = {31, 28, 31, 30, 31, 30, 31...
2023-02-27
0
282
题解 | #成绩排序#
#include<iostream> #include<string.h> using namespace std; typedef struct student { string name; int age; int score; } stude...
2023-02-25
0
312
题解 | #最大的两个数#
#include<iostream> using namespace std; int main() { int A[4][5]; int i, j; for (i = 0; i < 4; i++) for (j = 0; j <...
2023-02-25
4
357
题解 | #奇偶校验#
#include <bitset> #include <iostream> using namespace std; int main() { char s; while (cin >> s) { bitset<8>...
2023-02-25
8
323
题解 | #二叉排序树#
#include<iostream> using namespace std; typedef struct node { int data; struct node* lchild; struct node* rchild; }* BiTree, node;...
2023-02-24
0
252
首页
上一页
1
2
下一页
末页