编写题解 2074: [STL训练]A+B 摘要:解题思路:注意事项:参考代码:while True: try: a,b=map(str,input().split()) print(int(a.repl…… 题解列表 2022年03月16日 0 点赞 0 评论 292 浏览 评分: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
编写题解 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
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
[STL训练]A+B Python------十二 摘要:解题思路:用while循环,可不受组数限制。注意事项:引用try......except......进行取数,不受组数限制(防止测试时组数与题干数不同)参考代码:while True: tr…… 题解列表 2022年03月14日 0 点赞 0 评论 229 浏览 评分:9.9
[STL训练]A+B-题解(C++代码)只做最好的思路! 摘要:这题还真是折腾人,如果不用容器,直接来硬做,还真不好解决或者太麻烦,不仅要考虑','还要考虑'-',后来听了少师傅的讲解后,我擦嘞,竟然还有这种骚操作,看来还是知道的太少了,o(╥﹏╥)o。。。代码如…… 题解列表 2020年03月29日 2 点赞 3 评论 664 浏览 评分:9.1
【优质】函数封装,简洁实现 string应用! 2074题-[STL训练]A+B-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int pure(string a) { string::iterator…… 题解列表 2020年03月04日 0 点赞 0 评论 624 浏览 评分:7.3
简单易懂代码,你值得拥有!!!2074题-[STL训练]A+B-题解(C++代码)觉得可以,请留下5星好评哦!!! 摘要: #include using namespace std; typedef long long ll; int main() { strin…… 题解列表 2019年08月18日 0 点赞 0 评论 479 浏览 评分:7.2
[STL训练]A+B-题解(C++代码) 摘要:记录:在这里C++编译器环境下,传入stirng参数时,需要在其前面加上命名空间进行限定,不然会编译出错。 ``` #include #include #include using name…… 题解列表 2019年10月04日 0 点赞 0 评论 731 浏览 评分:6.0
[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