求[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