下面关于 C++的程序的运行结果是?( )
int main()
int s = 1;
for(int i = 1; i < 10; i++)
s += i;
cout<<s<<endl;
return 0;
}
45
46
55
56