IAMCKAI
IAMCKAI
全部文章
分类
题解(7)
归档
标签
去牛客网
登录
/
注册
IAMCKAI的博客
全部文章
(共7篇)
题解 | #整数奇偶排序#
比较函数区分为四种情况 奇奇 偶偶 奇偶 偶奇 #include <iostream> #include <cstdio> #include <algorithm> using namespace std; bool Compare(int x, int y...
C++
2022-03-24
0
369
题解 | #成绩排序#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; struct Student { int number; int score; };...
C++
2022-03-24
0
311
题解 | #排序#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MaxSize = 100 + 10; int arr[MaxSize]; ...
C++
2022-03-23
0
362
题解 | #百鸡问题#
进行除法运算时,需注意小数。 #include <iostream> #include <cstdio> using namespace std; void chicken(int money){ for(int i = 0; i<=100; i++){ ...
C++
2022-03-22
3
425
题解 | #与7无关的数#
注意判断: 7的倍数:i%7==0 十位上7: i/10==7 个位上7: i%10==7 #include <iostream> #include <cstdio> using namespace std; int sumUnder7(int n){ ...
C++
2022-03-22
0
429
题解 | #对称平方数1#
对称平方数 相当于判断一个数的平方是否为反序数。 #include <iostream> #include <cstdio> using namespace std; //判断是否为对称数,相当于判断平方数是否为反序数 bool reverse(int n){ ...
C++
2022-03-22
1
386
题解 | #反序数#
注意反转数的算法 int reverse(int n){ int reverseN = 0; while(n != 0){ reverseN *= 10; reverseN += n % 10; n /= 10; } ...
C++
2022-03-22
0
308