UDP广播协议叫吃饭


私信TA

用户名:Mustenaka

访问量:149633

签 名:

个人博客www.mustenaka.cn

等  级
排  名 13
经  验 25390
参赛次数 8
文章发表 197
年  龄 3
在职情况 学生
学  校 Sky_box
专  业 NE

  自我简介:

欢迎光临我的博客www.mustenaka.cn,Python,C#,U3D,C/C++开发合作可以找我

解题思路:
    就是....便利....就完事了。
参考代码:

#include<bits/stdc++.h>
using namespace std;
int main(){
	int n,m;
	while(cin>>n>>m){
		bool flag=true;
		for(int i=n;i<=m;i++){
			int temp=i,sum=0;
			while(temp){
				sum+=(pow(temp%10,3));
				temp/=10;
			}
			if(sum==i){
				flag=false;
				cout<<i<<' ';
			}
		}
		if(flag){
			cout<<"no"<<endl;
		}else{
			cout<<endl;
		}
	}
	return 0;
}


 

0.0分

1 人评分

  评论区

你这个输入100 到 999 输出时少了 一个153
2021-05-07 10:12:30
就是。。强。。就完事了
2019-04-17 21:45:07
  • «
  • 1
  • »