19、以下程序输出多组数字,其中包括下列选项中的哪个选项
#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;
}(5 分)
A.407,153
B.408,154
C.408,153
D.407,159