提取字符串中的數(shù)字并相加
char a = '0';
? ? ? ? ? ? int sum = 0;
? ? ? ? ? ? do
? ? ? ? ? ? {
? ? ? ? ? ? ? ? a = (char)Console.Read();
? ? ? ? ? ? ? ? if (a >= '0' & a <= '9')?
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? int number = a - 48;//這一步是把ascii值轉(zhuǎn)換成十進制的數(shù)字
? ? ? ? ? ? ? ? ? ? sum += number;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? while (a != '@');
? ? ? ? ? ? Console.Write(sum);
標(biāo)簽: