#4944: 為甚麼錯????


hermansmartboy (以前的仁和在此停止)

學校 : 國立宜蘭高級中學
編號 : 14950
來源 : [111.248.139.131]
最後登入時間 :
2012-11-13 20:05:34
d098. Stringstream運用練習(C++) -- 說明文件出自C++ Reference | From: [180.218.252.193] | 發表日期 : 2011-03-06 16:03

#include<stdio.h>
#include<stdlib.h>
int main()
{
    int a,b,c,d,e,f;
    char s[9999];
    while(gets(s)!=0){
    a=0;c=0;
    while(s[a]!='\0'){
          b=s[a]-48;
          d=0;
          f=1;
          while(s[a]!=' ' && s[a]!='\0'){           
           d=(d*10+b)*f;         
           a++;         
           b=s[a]-48;
           if(b>9 || b<1)
           f=0;         
                     }
          c=c+d;
         a++;
                      }
                      printf("%d\n",c);
       }
       return 0;
ZeroJudge Forum