首页
DreamJudge
院校信息
考研初试
考研复试
保研专区
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
Ang
2020年3月12日 14:57
签到
P1034
回复 0
|
赞 0
|
浏览 8.6k
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; while(cin>>m>>n){ if(n==0&&m==0){ break; } bool flag = false; for(int i=m;i<=n;i++){ int temp=i; int a = temp %...
LiW97
2020年1月30日 21:20
水仙花数
P1034
回复 0
|
赞 8
|
浏览 11.2k
#include<stdio.h>; int main(){ int m,n,i; int a,b,c; int flag=0; while(1){ scanf("%d%d",&m,&n); if(m==0&&n==0) ...
1
2
3
4
题目
水仙花数
题解数量
32
发布题解
在线答疑
热门题解
1
水仙花数 题解:
2
水仙花数 题解:
3
水仙花数 题解:
4
水仙花数 题解:
5
水仙花数 题解:C
6
水仙花数 题解:C++
7
水仙花数 题解:
8
水仙花数 题解:
9
水仙花数 题解:
10
水仙花数 题解: