C 輸入一串數字,去掉其中含7的和能被7整除的數

來源:互聯網
上載者:User

標籤:c   字串   

C 輸入一串數字,去掉其中含7的和能被7整除的數,每個數小於10000,數字個數小於100

輸入例子:1,7,56,77,87,2,45,42,97,9977

輸出:1,2,45

注意:輸入個數不確定,所以不能夠用整形數組處理,不能以判斷整形數組元素是否等於\n為結束,因為數組是整形的,\n是字元型的,是輸入不進去的

       所以要用字串來處理,先把用逗號相隔的所有整數取出來,然後再對這些數進行判斷輸出


#include<stdio.h>
#include<string.h>
void main()
{
char a[1000000];
int b[100],c[100];
int i,j,k,len,t,flag=0,len1=0;
k=0;len=0;t=0;
gets(a);
len1=strlen(a);
for(i=0,j=0;i<=len1;i++)
if(a[i]>=‘0‘&&a[i]<=‘9‘)
{
t=10*t+a[i]-‘0‘;
   flag=1;
}
else if(flag==0)
continue;
else
{
b[j]=t;
j++;
len++;
t=0;
flag=0;
}


for(j=0,i=0;i<len;i++)
if(b[i]%7==0) continue;
else if(b[i]%10==7)continue;
else if((b[i]/10)%10==7)continue;
else if((b[i]/100)%10==7)continue;
else if((b[i]/1000)%10==7)continue;
else 
{
c[j]=b[i];
j++;
}
for(i=0;i<j-1;i++)
printf("%d,",c[i]);
printf("%d\n",c[j-1]);
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.