求[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 评论 182 浏览 评分:0.0
因为其它题不会,所以只会做简单题的臭猜币一个 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d%d",&x,&y); if(x>y) { …… 题解列表 2023年03月03日 0 点赞 1 评论 199 浏览 评分: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 评论 355 浏览 评分:0.0
C++:递归函数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;void ko ( int x , int y , long long &…… 题解列表 2025年04月25日 0 点赞 0 评论 137 浏览 评分:0.0