求调

P1001 A+B Problem

tyt_ @ 2024-12-09 20:01:02

#include<bits/stdc++.h>
using namespace std;
int mmm(int a,int b){
    if(a+b!=a+b) return 0;
    int ans=0;
    while(10){
        ans+=(ans==a?b:ans>=a+b?0:a);
    }
    return (ans!=a+b?0:ans);
}
int main(){
int n,m;
cin>>n>>m;
int a;
int b;
int c;
int d;
int f;
int ww;
int n1;
cout<<mmm(n,m);
}

by chuzihao @ 2025-01-02 18:49:42

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
int main() {
    ll n,m;cin>>n>>m;
    cout<<n+m;
    return 0;
}

为什么非要搞这么多


by chuzihao @ 2025-01-02 18:53:31

@tyt_

while(10)你不T谁T,一直while不停,hh,一个a+b就可以解决的事,非要while


by tyt_ @ 2025-01-08 19:11:41

@chuzihao 科研新方法


by chuzihao @ 2025-01-08 20:00:49

@tyt_ 科研新方法可以啊

但是你While(10) 你怎么科研新方法

重复循环这里应该先改一改,应该先改成定义一个变量是某一个数,然后While(n--) (例如变量是n) 毕竟你要是一直循环只会T


|