以下程序输出多组数字,其中包括下列选项中的哪个选项
#include<iostream> using namespace std; int main() { int g,s,b; for(int n=100;n<1000;n++) { b = n / 100; s = n / 10 % 10; g = n % 10; if(g*g*g+s*s*s+b*b*b==n) { cout<<n<<endl; } } return 0; }
407,153
408,154
408,153
407,159