CryptoKfW
CryptoKfW
全部文章
题解
归档
标签
去牛客网
登录
/
注册
CryptoKfW的博客
全部文章
/ 题解
(共5篇)
题解 | #计算商品打折结算金额#
#include <iostream> #include <iomanip> using namespace std; int main() { double price; cin >> price; double cost ...
C++
2022-06-29
17
306
题解 | #四季#
#include<bits/stdc++.h> using namespace std; int main() { int time; cin>>time; int month = time%100; switch(month%12/3) ...
C++
2022-06-25
7
278
题解 | #判断闰年#
#include<bits/stdc++.h> using namespace std; int main() { int tmp; cin>>tmp; if((!(tmp%4)&&tmp%100)||!(tmp%400)) ...
C++
2022-06-25
0
268
题解 | #牛牛的对齐#
#include<bits/stdc++.h> using namespace std; int main() { vector<int> vec; int tmp; for(int i=0;i<4;i++) if(i<2)...
C++
2022-06-24
1
324
题解 | #牛牛的对齐#
#include<bits/stdc++.h> using namespace std; int main() { int tmp; while(cin>>tmp) { cout<<tmp; cout<...
C++
2022-06-17
0
249