请各位大哥帮我看看是怎么回事?
#include <stdio.h>
void main () { int neg_int = -5; int pos_int = 5;
float neg_flt = -100.23; float pos_flt = 100.23;
printf("The integer values are %+d and %+d\n", neg_int, pos_int);
printf("The floating point values are %+f %+f\n", neg_flt, pos_flt); } 有没有错,我用的Turbo C2.0编辑,他始终说我有错。