首页 > 代码库 > 题目1003:A+B------------------------写的复杂了点
题目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------------------------写的复杂了点
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。