zoukankan      html  css  js  c++  java
  • [HDU1000] A + B Problem

    Problem Description

    Calculate A + B.

    Input

    Each line will contain two integers A and B. Process to end of file.

    Output

    For each case, output A + B in one line.

    Sample Input

    1 1

    Sample Output

    2

    分析

    输入两个数A和B,求A+B。

    但是是多行的,因此需要用循环反复读取。

    又因为输入数据中没有说有多少行,因此不能使用计数循环,而要通过while循环判断是否到达文件尾,如果是则停止循环。

    而在循环中则是将输入的两个数的和算出,并输出。

    因此C/C++代码如下:

    C

    #include <stdio.h>
    int main()
    {
        int a, b;
        while (scanf("%d%d", &a, &b) != EOF)
            printf("%d
    ", a + b);
        return 0;
    }

    C++

    C++和C区别不大,仅仅是<stdio.h>和<iostream>,printf和cout,scanf和cin,以及如何判断EOF。

    #include <iostream>
    int main()
    {
        int a, b;
        while (cin >> a >> b)
            cout << (a + b) << endl;
        return 0;
    }
  • 相关阅读:
    DAY7-面向对象之封装
    Java遇到的问题、错误——持续更新
    008单例、继承、final
    java一些使用
    2.1端口扫描器
    PyCharm设置
    常用算法
    PyCharm最新2018激活码,最新方法
    004数组
    042多进程
  • 原文地址:https://www.cnblogs.com/collectionne/p/6786367.html
Copyright © 2011-2022 走看看