#include<stdio.h>
#include<string.h>
#include<stdlib.h>
char *decimal(char *p);
int main()
{
char p;
char q;
p=(char)malloc(100sizeof(char));
gets§;
while(*p==‘0’)
{
p++;
}
if(*p==’\0’||*p==’.’)
p–;
q=strchr(p,’.’);
if(q!=NULL)
*q=’\0’;
puts§;
return 0;
}
取整
最新推荐文章于 2023-05-17 10:38:09 发布