printf("%d*%d=%d\t",i,j,result); } printf("\n"); 我想问一下为什么要写成这样"%d*%d=%d?
\t \n 分别代表什么意思?
%d是格式输出一个整数,\t是水平跳格 \n是换行符, 都是转义字符