下面C++代码执行时输入10后,正确的输出是( )。
1 int N; 2 cout << "请输入正整数:"; 3 cin >> N; 4 if (N % 3) 5 printf("第5行代码%2d", N % 3); 6 else 7 printf("第6行代码%2d", N % 3);