麻烦来看看这个是哪出问题了
#include "stdio.h"#include "string.h"
void main()
{
int a;
scanf("%d",&a);
float b;
scanf("%f",&b);
float c;
scanf ("%f",&c);
char d[3];
gets("%s",&d);
a==4&&b>165&&c>=75&&strcmp(d,"女")==0;
printf("%d%f%f%s\n",a,b,c,d);
}
感觉没问题,但是提示b.c.d没有定义 不知道哪出问题,麻烦帮忙看看。
[ 本帖最后由 丶璀璨丶 于 2014-2-28 18:10 编辑 ]