1001 A+B Format

題解 簡單模擬題,轉化爲字符串處理會比較方便。 #include<iostream> #include<cstdio> #include<string> using namespace std; int main() { int a, b; scanf("%d%d", &a, &b); string result = to_string(a + b); int len = result.l
相關文章
相關標籤/搜索