为啥错

P1001 A+B Problem

MuYuMC @ 2024-05-02 21:41:04

#include <iostream>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <iomanip>
using namespace std;
int main()
{
    int a,b;
    cin >> a >> b;
    cout << a + b;
    return 0;
}

by lutaoquan2012 @ 2024-05-02 21:44:32

@zhaoheyu6 选错语言了吧


by MuYuMC @ 2024-05-02 21:45:36

@lutaoquan2012 选的自动识别语言啊


by lutaoquan2012 @ 2024-05-02 21:47:12

@lutaoquan2012 好奇怪呀,再叫一遍试试


by lutaoquan2012 @ 2024-05-02 21:49:15


by MuYuMC @ 2024-05-02 21:49:23

@lutaoquan2012emm....刷新了一下又对了


by lutaoquan2012 @ 2024-05-02 21:50:32

@zhaoheyu6 正常,看我的刚才提交记录

https://www.luogu.com.cn/record/157735857

都全A乐,还Waiting


by MuYuMC @ 2024-05-03 08:41:11

@lutaoquan2012 hh


by jintingze123 @ 2024-05-03 16:59:14

不开long long 见祖宗


by E303 @ 2024-05-14 16:24:54

<?php
$input = trim(file_get_contents("php://stdin"));
list($a, $b) = explode(' ', $input);
echo $a + $b;

这样写 然后把语言调成PHP就能过了


|