Meby1015
Meby1015
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Meby1015的博客
全部文章
/ 题解
(共2篇)
题解 | #a+b# 简单易懂的字符串加法
#include <iostream> using namespace std; int main() { string a, b; while (cin >> a >> b) { int len1 = a.size(), len...
C++
数组
字符串
数学
模拟
2022-05-05
1
368
题解 | #成绩排序#
主要是定义结构体,再加上手动实现sort排序 #include <iostream> #include <algorithm> using namespace std; struct score { &nbs...
C++
数组
字符串
设计
模拟
有序集合
2022-05-04
0
379