#include <stdio.h>
int main(){
int l,m,q,j;
char option;
scanf("%d",&q);
printf("%d\n",q);
for(j=0;j<q;j++){
scanf("%c %d %d",&option,&l,&m);
printf("%c %d %d",option,l,m);
}
return 0;
}
出力:
3(Input)
3
C 1 4(Input)
0 -374066224C 1 4
上記のコードの何が問題になっていますか? 期待される出力が得られません。