求[X,Y]内被除3余1并且被除5余3的整数的和!!!!!! 摘要:解题思路:注意事项:sum要赋一个初值,不然会随机分配一个值。参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int x,y,…… 题解列表 2022年07月04日 0 点赞 0 评论 468 浏览 评分:0.0
求[X,Y]内被除3余1并且被除5余3的整数的和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,i,s=0; scanf("%d%d",&x,&y); for(i=x;i<y;i++) { …… 题解列表 2022年12月22日 0 点赞 0 评论 400 浏览 评分:0.0
求[X,Y]内被除3余1并且被除5余3的整数的和 摘要:```c #include int main(){ int x,y; long long sum=0; scanf("%d%d",&x,&y); for(;x…… 题解列表 2023年02月05日 0 点赞 0 评论 429 浏览 评分:0.0
因为其它题不会,所以只会做简单题的臭猜币一个 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d%d",&x,&y); if(x>y) { …… 题解列表 2023年03月03日 0 点赞 1 评论 496 浏览 评分:0.0
1166求[X,Y]内被除3余1并且被除5余3的整数的和(for循环遍历) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int X, Y; cin >> X >> Y; long long …… 题解列表 2024年07月10日 0 点赞 0 评论 645 浏览 评分:0.0
C++:递归函数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;void ko ( int x , int y , long long &…… 题解列表 2025年04月25日 0 点赞 0 评论 376 浏览 评分:0.0
简单判断循环嵌套 摘要:解题思路:简单的判断与循环结构嵌套输出注意事项:参考代码:# define _CRT_SECURE_NO_WARNINGS 1# include<stdio.h># include<…… 题解列表 2026年07月22日 0 点赞 0 评论 7 浏览 评分:0.0
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,count=0; scanf("%d %d",&a,&b); for(int …… 题解列表 2018年08月20日 0 点赞 0 评论 1222 浏览 评分:0.0
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码) 摘要:解题思路:题目简单,都没人写 题解注意事项:参考代码:#include<stdio.h>int main(){ int m,n,sum,i,a,b; while(scanf("%d%d",…… 题解列表 2017年10月09日 0 点赞 0 评论 1246 浏览 评分:0.0
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int a,b,i,sum=0; scanf("%ld%ld",&a,&b); fo…… 题解列表 2017年12月01日 0 点赞 0 评论 1120 浏览 评分:0.0