下面C++代码执行后的输出是( )。
1 int loopCount = 0; 2 for (int i=0; i < 10; i++) 3 for (int j=1; j < i; j++) 4 loopCount += 1; 5 cout << loopCount;
55
45
36
28