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