#include <iostream> #include <vector> #include <set> #include <string> using namespace std; int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); string a; string b; cin >> a; cin >> b; string out; string in ; if ( a.length() > b.length() ) { out = a; in = b; } else { out = b; in = a; } // lets do ascii table to operatate on values // https://cplusplus.com/reference/string/string/c_str/ int in_last_index=in.length()-1; int out_last_index=out.length()-1; bool przeniesienie=false; for ( int i=in_last_index, j=out_last_index ; i>=0 ; i--,j-- ) { // short int x=in[i]-48; // short int y=out[j]-48; /* asci table 48 30 0 49 31 1 50 32 2 51 33 3 52 34 4 53 35 5 54 36 6 55 37 7 56 38 8 57 39 9 */ short int psum=in[i]+out[j]-48; //partial sum in asci number if (przeniesienie==true){ psum++; } if (psum > 57 ){ przeniesienie=true; psum=psum-10; } else { przeniesienie=false; } out[j]=psum; // cout << x << '\n'; // cout << y << '\n'; // cout << psum << '\n'; } if (przeniesienie==true){ for ( int j=out_last_index-in_last_index -1 ; j>=0 ; j--) { short int psum=out[j]; //partial sum in asci number if (przeniesienie==true){ psum++; } if (psum > 57 ){ przeniesienie=true; psum=psum-10; out[j]=psum; } else { przeniesienie=false; out[j]=psum; break; } } if (przeniesienie==true) { out.insert(out.begin(),'1'); } } cout << out << '\n'; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | #include <iostream> #include <vector> #include <set> #include <string> using namespace std; int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); string a; string b; cin >> a; cin >> b; string out; string in ; if ( a.length() > b.length() ) { out = a; in = b; } else { out = b; in = a; } // lets do ascii table to operatate on values // https://cplusplus.com/reference/string/string/c_str/ int in_last_index=in.length()-1; int out_last_index=out.length()-1; bool przeniesienie=false; for ( int i=in_last_index, j=out_last_index ; i>=0 ; i--,j-- ) { // short int x=in[i]-48; // short int y=out[j]-48; /* asci table 48 30 0 49 31 1 50 32 2 51 33 3 52 34 4 53 35 5 54 36 6 55 37 7 56 38 8 57 39 9 */ short int psum=in[i]+out[j]-48; //partial sum in asci number if (przeniesienie==true){ psum++; } if (psum > 57 ){ przeniesienie=true; psum=psum-10; } else { przeniesienie=false; } out[j]=psum; // cout << x << '\n'; // cout << y << '\n'; // cout << psum << '\n'; } if (przeniesienie==true){ for ( int j=out_last_index-in_last_index -1 ; j>=0 ; j--) { short int psum=out[j]; //partial sum in asci number if (przeniesienie==true){ psum++; } if (psum > 57 ){ przeniesienie=true; psum=psum-10; out[j]=psum; } else { przeniesienie=false; out[j]=psum; break; } } if (przeniesienie==true) { out.insert(out.begin(),'1'); } } cout << out << '\n'; } |