找回密码
 立即注册
首页 业界区 科技 牛客题解 | 单组_A+B

牛客题解 | 单组_A+B

挫莉虻 2025-6-7 13:31:00
题目

题目链接
解题思路

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

[code]#include using namespace std;int main(void){        ios::sync_with_stdio(false);        cin.tie(0);        int a,b;        cin>>a>>b;        cout
您需要登录后才可以回帖 登录 | 立即注册