运行以下双重循环,输出为()
int cnt=0; for(int i=2;i<=4;i++) for(int j=1;j<=3;j++) if(i%j==0) cnt++; cout<<cnt;
6
5
4
7