编写题解 2074: [STL训练]A+B 摘要:解题思路:将字符串转化为整数就好了。注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>long long as(char a[]…… 题解列表 2024年03月13日 0 点赞 0 评论 186 浏览 评分:9.9
方法有点笨,但是还好哈哈。利用split解决。。。。。。。。。。。 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String[] args…… 题解列表 2024年01月21日 0 点赞 0 评论 60 浏览 评分:0.0
比那些题解都简单 摘要:```cpp #include using namespace std; using gg = long long; int main() { string s1 , s2; …… 题解列表 2023年04月13日 0 点赞 0 评论 146 浏览 评分:0.0
编写题解 2074: [STL训练]A+B 摘要:解题思路:注意事项:参考代码:while True: try: a,b=map(str,input().split()) print(int(a.repl…… 题解列表 2022年03月16日 0 点赞 0 评论 291 浏览 评分:9.9
[STL训练]A+B Python------十二 摘要:解题思路:用while循环,可不受组数限制。注意事项:引用try......except......进行取数,不受组数限制(防止测试时组数与题干数不同)参考代码:while True: tr…… 题解列表 2022年03月14日 0 点赞 0 评论 229 浏览 评分:9.9
[STL训练]A+B 不用 stringstream也可以做 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string fun(std::string s){ while(1){ …… 题解列表 2022年03月01日 0 点赞 0 评论 169 浏览 评分:0.0
Hifipsysta-2074-[STL训练]A+B(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string str_1; string str_2…… 题解列表 2022年02月10日 0 点赞 0 评论 164 浏览 评分:9.9
2074: [STL训练]A+B(Java) 摘要: import java.math.*; import java.util.*; public class Main { public stat…… 题解列表 2021年03月23日 0 点赞 0 评论 289 浏览 评分:9.9
[STL训练]A+B-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> #include<stdlib.h> int main() { int x,y; …… 题解列表 2020年12月04日 0 点赞 0 评论 447 浏览 评分:2.0
[STL训练]A+B-题解(C++代码)只做最好的思路! 摘要:这题还真是折腾人,如果不用容器,直接来硬做,还真不好解决或者太麻烦,不仅要考虑','还要考虑'-',后来听了少师傅的讲解后,我擦嘞,竟然还有这种骚操作,看来还是知道的太少了,o(╥﹏╥)o。。。代码如…… 题解列表 2020年03月29日 2 点赞 3 评论 664 浏览 评分:9.1