求请教

P1001 A+B Problem

Xiong_xhrxhr @ 2023-12-03 09:46:54

二分法怎么做?


by wangzhiqin @ 2023-12-03 09:51:09

https://blog.csdn.net/bluecraft_m/article/details/126349040

@Xiong_xhrxhr


by Xiong_xhrxhr @ 2023-12-03 10:19:30

关注大佬了 @wangzhiqin


by douyachong @ 2023-12-18 16:30:35

#include<bits/stdc++.h>
using namespace std;
int main(){
    int a,b;
    cin>>a>>b;
    cout<<a+b;
    return 0; 
} 

by PandaSun @ 2024-02-06 17:31:47

@wangzhiqin 关注大佬


|