L1-025 正整数A+B(详解)

#include
using namespace std;
int main()
{
	string d;getline(cin,d);
	string a,b,e;
  for(int i=0;i='0'&&a[i]<='9')aa++;
  
  }
  for(int i=0;i='0'&&b[i]<='9')bb++;
    
    }//stoi用法是将字符串转化为int类型,不知道的可以查一下 
    if(aa==a.size()&&a[0]!='0'&&stoi(a)<=1000)cout<

本题易错点:

1、A和B的范围【0--1000】

2、将字符串转化为int类型可以用stoi也可以手搓

你可能感兴趣的:(算法)