牛客263470847号
牛客263470847号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客263470847号的博客
全部文章
/ 题解
(共3篇)
题解 | #成绩排序#
#include #include #include using namespace std; struct Student { int number;//学号 int score;//成绩 }; const int MAX = 100; Student stu[MAX]; bool compare...
C++
2022-03-22
0
332
题解 | #手机键盘#
#include #include using namespace std; int keytab[26] = {1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,4,1,2,3,1,2,3,4}; int main() { string str; while (cin >...
C++
2022-03-21
4
500
题解 | #打印日期#
#include #include using namespace std; int daytab[2][13]={ {0,31,28,31,30,31,30,31,31,30,31,30,31}, {0,31,29,31,30,31,30,31,31,30,31,30,31} }; bool Is...
C++
2022-03-21
0
268