题目1003:A+B------------------------写的复杂了点
Posted 贱人郭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题目1003:A+B------------------------写的复杂了点相关的知识,希望对你有一定的参考价值。
AC:
#include<stdio.h> int main() { char str1[12],str2[12]; while(scanf("%s %s",&str1,&str2)!=EOF) { int f1=1,f2=1,i=0,j=0; long long int res=0,tem1=0,tem2=0; for (i=0;str1[i]!=‘\0‘;i++) { if (str1[0]==‘-‘) f1=-1; if (str1[i]!=‘,‘&&str1[i]!=‘-‘) tem1=tem1*10+(str1[i]-‘0‘); } tem1=f1*tem1; for (j=0;str2[j]!=‘\0‘;j++) { if (str2[0]==‘-‘) f2=-1; if (str2[j]!=‘,‘&&str2[j]!=‘-‘) tem2=tem2*10+(str2[j]-‘0‘); } tem2=f2*tem2; res=tem1+tem2; printf("%ld\n",res); } return 0; }
以上是关于题目1003:A+B------------------------写的复杂了点的主要内容,如果未能解决你的问题,请参考以下文章
题目1003:A+B------------------------写的复杂了点
DBSDFZOJ-----1003-----语法百题-----余数