执行以下程序,输出结果中"*"的数量是( )
int n = 3, m = 4; for (int i = 1; i <= n; i++) { for (int j = 0; j < m; ++j) { cout << "*"; } }
4
5
12
16