水仙花数代码(C++11)

发布时间:2024年01月25日

题目请看我的《水仙花数题目(C++11)》

#include<iostream>
using namespace std;
int main()
{
? ? int n,a,b,c;
? ? cin>>n;
? ? c=n%10;
? ? b=n/10%10;
? ? a=n/100;
? ? if(c*c*c+b*b*b+a*a*a==n)
? ? {
? ? ?? ?cout<<"it is daffodil"<<endl;
?? ?}
?? ?else
?? ?{
?? ??? ?cout<<"it is not daffodil"<<endl;
?? ?}
? ? return 0;
}

文章来源:https://blog.csdn.net/ks_szyxjs/article/details/135798197
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。