ZOJ1292 POJ1503 Integer Inquiry 대수 덧셈
/*******************************************************************************
* Author : Neo Fung
* Email : [email protected]
* Last modified : 2011-07-28 12:09
* Filename : ZOJ1292 POJ1503 Integer Inquiry.cpp
* Description :
* *****************************************************************************/
// ZOJ1292 POJ1503 Integer Inquiry.cpp : Defines the entry point for the console application.
//
// #include "stdafx.h"
#include <fstream>
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <math.h>
#include <algorithm>
#include <numeric>
#include <functional>
#include <memory.h>
using namespace std;
#define MAXLENGTH 110
void longintegersum(int sum[MAXLENGTH],int temp[MAXLENGTH])
{
for(int i=0;i<MAXLENGTH-1;++i)
{
sum[i] +=temp[i];
if(sum[i]>9)
{
sum[i] %=10;
++sum[i+1];
}
}
}
int main(void)
{
// ifstream cin("data.txt");
int ncases;
int firstcase=1;
string str;
int sum[MAXLENGTH],temp[MAXLENGTH];
cin>>ncases; //ZOJ
// ncases=1; //POJ
while(ncases--)
{
memset(sum,0,sizeof(sum));
memset(temp,0,sizeof(temp));
while(cin>>str && str!="0")
{
int i(str.length()-1);
int j(0);
for(;i>=0;--i,++j)
{
temp[j]=str.at(i)-'0';
}
longintegersum(sum,temp);
}
if(!firstcase)
{
printf("
");
}
else
firstcase=0;
int flag=0;
for(int i=MAXLENGTH-1;i>=0;--i)
{
if(sum[i]||flag)
{
flag=1;
printf("%d",sum[i]);
}
}
printf("
");
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Access Request, Session and Application in Struts2If we want to use request, Session and application in JSP, what should we do? We can obtain Map type objects such as Req...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.