首页 > 代码库 > UVaOJ 112道题目-算数与代数
UVaOJ 112道题目-算数与代数
1、110501/10035 Primary Arithmetic (小学生算术)
注意输出格式
#include<stdio.h>#include<string.h>#include<math.h>#include<ctype.h>#include<algorithm>using namespace std;typedef long long lld;lld a,b;int main(){ while(scanf("%lld",&a)!=EOF) { scanf("%lld",&b); if(a==0&&b==0) break; int cnt=0; int tot=0; while(a!=0||b!=0) { if(a%10+b%10+cnt>=10) { cnt=1; tot++; } else { cnt=0; } a/=10; b/=10; } if(tot==0)printf("No "); else printf("%d ",tot); if(tot<=1) printf("carry operation.\n"); else printf("carry operations.\n"); } return 0;}
UVaOJ 112道题目-算数与代数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。