萌新求助A+B Problem MLE

P1001 A+B Problem

simplex_automaton @ 2024-09-27 10:54:05

RT,莫名其妙MLE了


#include <bits/stdc++.h>

int a, b;
int PLUS(int &a, int b){ a += b; }
int main()
{
    scanf("%d %d", &a, &b);
    PLUS(a, b);
    printf("%d\n", a);
    return 0;
}

by invisible_person @ 2024-09-27 10:56:50

@simplex_automaton 真是个值得深思的问题呢


by cff_0102 @ 2024-09-27 10:56:53

@simplex_automaton 把 int 改成 void。


by qazsedcrfvgyhnujijn @ 2024-09-27 10:58:28

int 函数没返回值导致的
下次交之前在编译选项里加上 -Wall -Wextra -Wshadow,基本够用了


by invisible_person @ 2024-09-27 10:59:39

@cff_0102 哇,是高级中学的dalao


by simplex_automaton @ 2024-09-27 11:00:18

@cff_0102 感谢来自深圳市高级中学的学长


by cff_0102 @ 2024-09-27 11:01:30

@invisible_person @simplex_automaton 我了个去


by simplex_automaton @ 2024-09-27 11:12:14

@qazsedcrfvgyhnujijn 哦哦谢谢%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


by qazsedcrfvgyhnujijn @ 2024-09-27 12:01:04

@simplex_automaton 前提是你看得懂英文,报错信息是英文的,看不懂可以有道翻译


by dacongming123 @ 2024-09-28 14:19:23

你有没有意思,一道比求(a+b)*c都水的题,用什么函数。


by hyh2013 @ 2024-09-28 18:30:08

666没返回值,还有第二行要加上

using namespace std 

@simplex_automaton


| 下一页