#include
#include
#include
//char*strchr(constchar*str,intch);
intmain(intargc,char*argv[])
{
inta=0;
doubleb=0;
charstr[10]="";
scanf("%s",str);//先存成字符串
if(NULL==strchr(str,'.'))//等于NULL是没有找到小数点
{
sscanf(str,"%d",&a);//再从字符串格式化成整型
printf("输入的是整型:%d\n",a);
}
else
{
sscanf(str,"%lf",&b);//再从字符串格式化成浮点型
printf("输入的是浮点型:%lf\n",b);
}
system("PAUSE");
return0;
}