/* Determine whether the string has a decimal point, taking C language as an example*/
#include
void main()< /p>
{
int i=0,f=0;
char str[30];
scanf("%s", str);
while(str[i]!=0)
{
if(str[i]=='.')
{
f=1;
break;
}
i++;
}
if(f==0)printf("Integer");
else printf("Floating point");
}