【刷题小记96】n-1位数

时间:2022-07-11 22:39:25
描述

已知w是一个大于10但不大于1000000的无符号整数,若w是n(n≥2)位的整数,则求出w的后n-1位的数。

输入
第一行为M,表示测试数据组数。
接下来M行,每行包含一个测试数据。
输出

输出M行,每行为对应行的n-1位数(忽略前缀0)。如果除了最高位外,其余位都为0,则输出0。


#include <stdio.h>
#include <string.h>
#define MAXSIZE 1000000+1
int main()
{
	char ch[MAXSIZE]={'\0'};
    int Cases;
    scanf("%d",&Cases);
    while(Cases--)
    {
		scanf("%s",ch);
		int len=strlen(ch);
		int i=1;
		while((ch[i]-'0')==0)
		{
			i++;
		}
		if(i==len)
			printf("0\n");
		else
		{
			for(;i<len;i++)
			{
				printf("%c",ch[i]);
			}
			printf("\n");
		}
    }
	return 0;
}