题解 | #两数求和#
两数求和
https://www.nowcoder.com/practice/f1b704af4f654be285552bea53ce6534
#include <iostream> using namespace std; int main() { // write your code here...... int a = 0; int b = 0; cin>>a>>b; cout<<a+b; return 0; }
两数求和
https://www.nowcoder.com/practice/f1b704af4f654be285552bea53ce6534
#include <iostream> using namespace std; int main() { // write your code here...... int a = 0; int b = 0; cin>>a>>b; cout<<a+b; return 0; }
相关推荐