救救我。。。。。。。。。。。。。。。。。。。。

栗栗子在吗?
我是一点都不会啊。。。
2. 水仙花数

题目ID:1136必做题40分

时间限制: 1000ms

空间限制: 65536kB

题目描述

求100~n中的水仙花数有哪些。假如这个三位数的三个位依次用a、b、c表示,如果满足 a3+b3+c3=这个三位数,则称其为水仙花数。

输入格式

一个整数�n。(�≤999)(n≤999)

输出格式

每行一个整数。

样例

Input 1

154

Output 1

153

1 个赞

教教我吧…

1 个赞

求一个数a的百位、十位、个位的方法:
百位:a/100
十位:a/10%10
个位:a%10

这个我知道

1 个赞

然后外面套一个for循环,遍历一下100~n之间的数,里面写一个if语句,结束

1 个赞

呃。。。

1 个赞

cmath库里有一个函数pow,返回的是幂,即 pow(a,b)=a^b

啥意思?

1 个赞

a^b 表示b个a相乘, a^3 就是3个a相乘

那pow是干嘛的

1 个赞

哦 好

1 个赞

#include
#include
using namespace std;
int main(){
int n,a,b,c;
cin>>n;
for(int i=1;i<=n;i++){
a=n/100;
b=n/10%10;
c=n%10;
if(aaa+bbb+ccc==i) cout<<i;
}

return 0;

}

1 个赞

要加换行

还有要点局部截取_20241229_163110格式化

    b=a/...;
    c=a/...%...;
    d=a%...%...;
    if(...){
      cout<<"YES";
    }
    else
      cout<<"NO";
    return 0;
}
1 个赞

核心代码
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n;
cin >> n;
int a = n % ?;
int b = (n / ?) % ?;
int c = ((n / ?) / ?) % ?;
if (a * a * a + b * b * b + c * c * c == ?)
{
cout << “?”;
}
else
{
cout << “?”;
}

2 个赞

不过问问题还是到问题讨论区比较好吧……

1 个赞

没事我来改
我活跃用户