凌风枳雨
凌风枳雨
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
凌风枳雨的博客
全部文章
(共2篇)
题解 | #人民币转换# 面向结果编程
#include <iostream> #include <vector> using namespace std; int main() { string s; vector<pair<string, string>> vec; ...
C++
2022-06-25
17
1179
题解 | #百钱买百鸡问题# 极简
#include <iostream> using namespace std; int main() { int n; cin >> n; cout << "0 25 75" <<endl; cout <<...
C++
2022-06-22
14
987