执⾏如下C++代码如果在键盘上输⼊10 ,执⾏后将输出20 。 ( )
char N; printf("请输入正整数: "); cin >> N; printf("%d\n", N * 2);
正确
错误