新手简单快速解决!!! 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n = 0, x = 0, y = 0; cin …… 题解列表 2023年11月05日 0 点赞 0 评论 95 浏览 评分:0.0
奇偶数之和(题目的意思是包括n的) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); int odd=0,even=0;//odd是…… 题解列表 2023年10月08日 0 点赞 0 评论 68 浏览 评分:0.0
奇偶数之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a=0,b=0; cin>>n; …… 题解列表 2023年07月01日 0 点赞 0 评论 132 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,s=0,t=0; cin>>n; for(in…… 题解列表 2023年07月01日 0 点赞 0 评论 110 浏览 评分:9.9
编写题解 3010: 奇偶数之和 摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ int n; int sum=0,a=0; if(scanf("%d",&n)==EOF){…… 题解列表 2023年04月25日 0 点赞 0 评论 78 浏览 评分:0.0
奇数偶数和 摘要:解题思路: 用两次循环分别跑一遍奇数和与偶数和注意事项:参考代码: #include<stdio.h>int main(){ int m,i,j; int a=0,n=0; …… 题解列表 2023年03月11日 0 点赞 0 评论 73 浏览 评分:0.0
使用俩个for循环 摘要:解题思路:注意奇数是从1开始偶数从2开始注意事项:参考代码:#include<stdio.h>int main(){ int N,Sum1=0,Sum2=0; scanf("%d",&N)…… 题解列表 2023年02月08日 0 点赞 0 评论 96 浏览 评分:0.0
3010: 奇偶数之和 摘要:```cpp #include using namespace std; int main() { int n,s=0,t=0; cin>>n; for(int …… 题解列表 2023年01月08日 0 点赞 0 评论 339 浏览 评分:9.9
奇偶数之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,s=0,t=0; scanf("%d",&n); for(i=0;i<=n;i…… 题解列表 2022年12月25日 0 点赞 0 评论 119 浏览 评分:0.0
简简单单-c语言for循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 1; int b; int sum = 0; i…… 题解列表 2022年12月21日 0 点赞 0 评论 169 浏览 评分:9.9