1267: A+B Problem题解
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b……
(Python)使用split()方法分隔两个加数
摘要:split()方法能指定以某种字符串将分隔符对字符串进行切片,返回包含所有切片的列表
[关于split()方法的介绍](https://www.runoob.com/python/att-strin……
嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n……
A+B Problem给个好评
摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e……
1267题解(刷几眼)
摘要:解题思路:1注意事项:1参考代码:int a,b ; cin>>a>>b ; cout<<a+b<<endl;……
编写题解 1267: A+B Problem
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d", &a, &b); printf("%d\n",a……
编写题解 1267: A+B Problem
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ unsigned int a,b; scanf("%d %d",&a,&b); printf(……
算术表达式与顺序执行--1.A+B Problem
摘要:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d",a+b); retur……
这么简单的题还属于中档题?
摘要:解题思路:基本操作注意事项:这有什么注意的,直接五星好评参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); ……