P1001 A+B Problem

P1001 A+B Problem,第1张

概述题目描述 输入两个整数a,b,输出它们的和(|a|,|b|<=10^9)。 输入格式 两个整数以空格分开 输出格式 一个数 输入输出样例 输入 #1 20 30 输出 #1 50 代码 C #include <stdio.h>int main() { int a,b; scanf("%d%d",&a,&b); printf("%d", a+b); r 题目描述

输入两个整数a,b,输出它们的和(|a|,|b|<=10^9)。

输入格式

两个整数以空格分开

输出格式

一个数

输入输出样例 输入 #1
20 30
输出 #1
50
代码 C
#include <stdio.h>int main() {    int a,b;    scanf("%d%d",&a,&b);    printf("%d",a+b);    return 0;}
C++
#include <iostream>#include <cstdio>using namespace std;int main() {    int a,b;    cin >> a >> b;    cout << a+b;    return 0;}
Pascal
var a,b: longint;begin    readln(a,b);    writeln(a+b);end.
Python python2
s = raw_input().split()print int(s[0]) + int(s[1])
python3
s = input().split()print(int(s[0]) + int(s[1]))
Java
import java.io.*;import java.util.*;public class Main {    public static voID main(String args[]) throws Exception {        Scanner cin=new Scanner(system.in);        int a = cin.nextInt(),b = cin.nextInt();        System.out.println(a+b);    }}
JavaScript (Node.Js)
const fs = require(‘fs‘)const data = fs.readfileSync(‘/dev/stdin‘)const result = data.toString(‘ascii‘).trim().split(‘ ‘).map(x => parseInt(x)).reduce((a,b) => a + b,0)console.log(result)process.exit()
PHP
<?PHP$input = trim(file_get_contents("PHP://stdin"));List($a,$b) = explode(‘ ‘,$input);echo $a + $b;
总结

以上是内存溢出为你收集整理的P1001 A+B Problem全部内容,希望文章能够帮你解决P1001 A+B Problem所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1211471.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存