挫莉虻 发表于 2025-6-7 13:31:00

牛客题解 | 单组_A+B

题目

题目链接
解题思路

输入两个数字,输出它们的和。
代码

#include using namespace std;int main(void){        ios::sync_with_stdio(false);        cin.tie(0);        int a,b;        cin>>a>>b;        cout
页: [1]
查看完整版本: 牛客题解 | 单组_A+B