1149计算1~N之间所有奇数之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string a; getline(cin, …… 题解列表 2024年08月26日 0 点赞 0 评论 165 浏览 评分:0.0
出圈,人要麻木了,真的出圈了 摘要:解题思路:注意事项:在判断最后一个函数中的迭代器要两次判断尾参考代码:#include <iostream> #include <vector> using namespace std; voi…… 题解列表 2024年08月27日 0 点赞 0 评论 127 浏览 评分:0.0
简简单单输入n(n<=100)个整数,按照绝对值从大到小排序后输出。题目保证对于每一个测试实例,所有的数的绝对值都不相等。 摘要:解题思路:注意事项:函数调用一大堆,哈哈哈就是面向对象参考代码:#include <iostream> #include <vector> #include <algorithm> #inclu…… 题解列表 2024年08月27日 0 点赞 0 评论 213 浏览 评分:0.0
[编程入门]宏定义的练习 摘要:解题思路:定义一个宏定义,求取a b的余数注意事项:取余符号是%参考代码:#include<stdio.h>#define reasu (a%b)main(){ int a,b; s…… 题解列表 2024年08月27日 0 点赞 0 评论 275 浏览 评分:0.0
[编程入门]数组插入处理 摘要:解题思路:关键在于n后面数的替换,可定义两个相同数组来实现替换。注意事项:参考代码:# includeint main(){ int n; int a[10]; int b[9]; for (int …… 题解列表 2024年08月27日 0 点赞 0 评论 151 浏览 评分:0.0
1796: 蛇形填数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int j; int a[100][100] …… 题解列表 2024年08月28日 0 点赞 0 评论 280 浏览 评分:0.0
编写题解 2945: 素数对 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int s(int n){ if(n==1) return 0; for(int …… 题解列表 2024年08月28日 0 点赞 0 评论 327 浏览 评分:0.0
没什么好说的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int i; scanf("%d",&i); i=(i>>4)&(~(~0<<4)); …… 题解列表 2024年08月29日 0 点赞 0 评论 165 浏览 评分:0.0
没什么好说的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int a,n,b,c; scanf("%u %d",&a,&n); b=a>>n; …… 题解列表 2024年08月29日 1 点赞 0 评论 331 浏览 评分:0.0
2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[100][100],n,sum=0;int main(){…… 题解列表 2024年08月29日 1 点赞 0 评论 352 浏览 评分:0.0