题解列表

筛选

5行代码搞定

摘要:解题思路:直接使用内置函数max()来判断大小注意事项:使用format()的时候注意前面要加上{}参考代码:def Max_num(a,b,c):     for i in range(1,3):……

新学小知识,哈哈,按位取反

摘要:解题思路:注意事项:              v&(~x<<a)&(~x>>31-b);//二进制左移低位补0,二进制右移高位补0              其实这里就相当于下面,这就是取反符号的作……

60行代码!!!

摘要:解题思路:1.先创建p,q两个链表数组(我也不知道叫什么,随便取的,大佬勿喷)               2.输入数据               3.合并数组(为了后面的排序)   &nbs

完美数的判断

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int x,sum=0;    cin>>x;    ……

罗列完美数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int wanmei(int n){    int sum=0;    for(in……

矩阵的对角线之和

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int a[5][5],sum=0,sum1=0;  ……

星期判断机

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int n;    cin>>n;    switch……

指针/引用练习之交换数字

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void swap(int &a,int &b){ int *p=&a,*q=&b;……