一般的整数其实很好进行处理,但是那个大数我是真没想到啥好办法。参考了一下另一位同学的办法,虽然还是没能理解这个原理。。还是得花时间琢磨琢磨。


另外一个小知识:

1) 一个字符ch要转化为数字时,应该用这个字符减去'0'。  ch  - '0'

2) 一个数字num要转化为字符时,应该用这个数字加上'0'。 num + '0'


参考代码如下:

#include <stdio.h>

int main()
{
    int result[10]; //用来存放输出结果的
    int x = 0;
    
    int i = 0;
    int j = 0;

    char ch;
    scanf("%c", &ch);
    do
    {
        while (ch != '\n')
        {
            x *= 10;
            x += ch - '0'; //注意所有数字都是以字符形式读入,因此进行运算前需要进行 ch - '0' 操作
            x %= 17;
            scanf("%c", &ch);
        }

        if (x == 0)
        {
            result[i++] = 1;
        }
        else
        {
            result[i++] = 0;
        }

        x = 0;
        scanf("%c", &ch);

    } while (ch != '0'); //输入的第一个字符不为'0',为'0'时退出

    for(j = 0; j < i; j++)
    {
        printf("%d\n", result[j]);
    }

    return 0;
}


 

0.0分

27 人评分

  评论区

#include<stdio.h>
int main() {
	int a[11];
	int i,t;
	t=1;
	for(i=0; t!=0; i++) {
		scanf("%d",&a[i]);
		t=a[i];
	}
	for(int j=0;j<i-1;j++)
	{
		int n,m,s;
		s=a[j]%10;		//个位数的大小 
		m=(a[j]-s)/10;	//去掉个位数的数值 
		n=m-s*5;		//相减的结果 
		if(n%17==0)
		printf("1\n");
		else
		printf("0\n");
	}
	return 0;
}
为什么我的%50错误啊?求解
2022-01-21 20:12:48
对啊,这么解的话,那题目的定理没有用啊
2021-10-16 10:24:03
这个和他题目里讲到的流程有什么关系啊
2021-09-11 13:53:42
我记得有个函数atoi()是可以把char型的数字转化为int型数的,像char  i=10;atoi(i)是可以用%d输出十的,atoi()调用时要有#include<stdlib.h>才能用,好像是
2021-03-20 16:09:47
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
    int a,b;
    char s[1000];
    while(scanf("%s",&s)&&s[0]!='0')
    {
        b=strlen(s);
        a=0;
        for(int i=0;i<b;i++)
        {
            a+=(s[i]-'0');
            a%=17;
            a*=10;
        }
        if(a==0){printf("1\n");}
        else{printf("0\n");}
    }
    return 0;
}
这个岂不美哉?
2021-02-16 21:52:44
核心代码是这段,对于超大数字,单纯的用求模%符号已经没有用了,这段代码的意思是从最高的两位数字开始求模,求模的结果(是个位数)升一位,再取新的一个数字,组成新的二位数,继续求模
while (ch != '\n')
        {
            x *= 10;
            x += ch - '0'; //注意所有数字都是以字符形式读入,因此进行运算前需要进行 ch - '0' 操作
            x %= 17;
            scanf("%c", &ch);
        }
2020-03-18 11:26:32
#include <stdio.h>
void fun(int x);
int main()
{
	int a[10], i=0,j;
	do{
		scanf("%d",&a[i++]);
	  }while(a[i-1]!=0 && i<10);		//输入数据 
	if(a[i-1]==0)		//确定非0数据的个数 
	j=i-1;				//存在0 
	else				// 不存在0 
	j=i;				//j是最终需要处理的数据个数 
	for(i=0;i<j;i++)
	fun(a[i]);
	return 0;
}
void fun(int x){		//判断该数据是否为17的倍数 
	int a=0,i,j;
	if(x>=10){
		i=x%10;
		x=x/10;
		j=x-5*i;
		if (j%17==0)
		a=1;
	}
	printf("%d\n",a);
}哪位大神看看哪里错了啊!错误50%,找了好久没找到
2020-02-21 22:15:44
#include <stdio.h>
#include <math.h> 
int file(int n)
{
	int a, b, c, d;
	if(n < 17)
	{
		return 0;
	}
	else
	{
		a = n % 10;
		b = 5 * a;
		c = n / 10;
		d = c - b;
		if(d % 17 == 0)
		{
			return 1;
		}
		else
		{
			return 0;
		} 	
	}
		
}
int main()
{
	int i = 0, a[10], j;
	while(scanf("%d", &a[i]) != EOF && a[i] >= 1 && a[i] <= pow(10, 100))
	{
		i++;
	}
	for(j = 0;j < i;j++)
	{
		printf("%d\n", file(a[j]));
	}
		
	
 } 哪里错了?
2020-02-19 18:07:20