博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【西交ACM】100 A+B problem
阅读量:6326 次
发布时间:2019-06-22

本文共 685 字,大约阅读时间需要 2 分钟。

【西交ACM】100   A+B problem

http://202.117.21.117/xjoj/problem_html/100.html

最简单的程序。

Description

give you two number A and B,you should output the result of A+B.

Input

two integer A,B on each line.

Output

output the A+B on each line.

Sample Input

1 23 4

Sample Output

37
1 //author:pz 2  3 import java.util.Scanner; 4  5 public class Main{ 6     public static void main(String[] args) { 7         Scanner sc =new Scanner(System.in); 8         while(sc.hasNext()){ 9             int a = sc.nextInt();10             int b = sc.nextInt();11             System.out.println(a+b);12 13         }            14     }15     16 }

 

转载于:https://www.cnblogs.com/pengzheng/archive/2013/04/18/3027759.html

你可能感兴趣的文章
C语言内存优化——继续含泪总结
查看>>
Android事件分发机制详解
查看>>
一款数据加密共享与签名方案
查看>>
SpringBoot-05-之上传文件
查看>>
查看与修改链接学习笔记
查看>>
红黑树
查看>>
Python数据类型和变量
查看>>
nginx配置http和https共存
查看>>
Firefox 将添加画中画功能
查看>>
JDK8 和 JDK9 的安装目录的区别
查看>>
python引包module出现No module named XXX,以及爬虫中文乱码问题
查看>>
Android不编译某个模块
查看>>
Kotlin使用泛型搭建一个MVP最简单实例
查看>>
Jmeter的下载安装和环境变量配置(Windows10系统)
查看>>
Angular开发环境搭建
查看>>
数值分析基础工具使用Matlab绘制双曲线
查看>>
Steam平台新增对雷蛇OSVR的兼容支持
查看>>
Docker搭建mysql容器
查看>>
快速排序
查看>>
三对角线性方程组(tridiagonal systems of equations)的求解
查看>>