下面程序的运行结果是?( )
int main(){
int s = 1;
int i = 1;
while(i < 10) {
s += i;
i++;
}
cout << s << endl;
return 0;
11
1
55
46