在C++中,若n=2,m=3,下面程序段中语句“s=s+j”重复执行( )次。
for(inti=0; i<n; i++) {
for(intj=1; j<=m; j++) {
s=s+j;
}
1
2
3
6