单选题

执行下方程序,共打印(    )次 "abc"

#include <iostream>

using namespace std;

int main ( ){

   for( int i = 0; i < 10; i++ ){

       cout << "hello world" << endl;

   }

    cout << "abc" << endl;

 

   return 0;

}

A

10

B

1

C

11

D 9
赣ICP备20007335号-2