#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
char str[20];
int sum=0;
int len,i;
printf("아무거나 입력: ");
scanf("%s",str);
len=strlen(str);
for(i=0;i<len;i++)
{
if('0'<=str[i] && str[i]<='9')
sum=sum+(str[i]-'0');
}
printf("숫자만 더한값 : %d\n",sum);
system("pause");
return 0;
}
2014.04.05 11:08
입력받은 문자열중에서 숫자만 골라 더한값을 출력하기
조회 수 10243 추천 수 0 댓글 0