执行下方程序,共打印( )次 "abc"
#include <iostream>
using namespace std;
int main ( ){
for( int i = 0; i < 10; i++ ){
cout << "hello world" << endl;
}
cout << "abc" << endl;
return 0;
10
1
11