编写题解 1169: 绝对值排序 摘要:```c++ #include #include #include using namespace std; int main() { int nums[100] = {0};…… 题解列表 2023年05月06日 0 点赞 0 评论 249 浏览 评分:0.0
5行代码搞定 摘要:解题思路:直接使用内置函数max()来判断大小注意事项:使用format()的时候注意前面要加上{}参考代码:def Max_num(a,b,c): for i in range(1,3):…… 题解列表 2023年05月07日 0 点赞 0 评论 292 浏览 评分:0.0
新学小知识,哈哈,按位取反 摘要:解题思路:注意事项: v&(~x<<a)&(~x>>31-b);//二进制左移低位补0,二进制右移高位补0 其实这里就相当于下面,这就是取反符号的作…… 题解列表 2023年05月07日 0 点赞 0 评论 338 浏览 评分:0.0
switch请求出战(比if else用更少的运行时间) 摘要:#include<stdio.h>int main(){ int i,bonus=0; scanf("%d",&i); switch(i/100000){ cas…… 题解列表 2023年05月07日 0 点赞 0 评论 231 浏览 评分:0.0
60行代码!!! 摘要:解题思路:1.先创建p,q两个链表数组(我也不知道叫什么,随便取的,大佬勿喷) 2.输入数据 3.合并数组(为了后面的排序) &nbs 题解列表 2023年05月07日 0 点赞 0 评论 242 浏览 评分:0.0
完美数的判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int x,sum=0; cin>>x; …… 题解列表 2023年05月07日 0 点赞 0 评论 271 浏览 评分:0.0
罗列完美数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int wanmei(int n){ int sum=0; for(in…… 题解列表 2023年05月07日 0 点赞 0 评论 321 浏览 评分:0.0
矩阵的对角线之和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[5][5],sum=0,sum1=0; …… 题解列表 2023年05月07日 0 点赞 0 评论 354 浏览 评分:0.0
星期判断机 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; switch…… 题解列表 2023年05月07日 0 点赞 0 评论 273 浏览 评分:0.0
指针/引用练习之交换数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void swap(int &a,int &b){ int *p=&a,*q=&b;…… 题解列表 2023年05月07日 0 点赞 0 评论 310 浏览 评分:0.0