MIPI_BaseC_WebinarFRTK/06_Lecture06/03_letter_add_p15.c

17 lines
301 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main()
{
char c;
int sum=0;
while( (c=getchar())!='\n') //спец символ новой строки
{
if(c>='0' && c<='9')
sum+=c-0x30;
//~ sum+=c-'0';
//~ sum+=c&0x0F;
}
printf("%d",sum);
return 0;
}