问题 1073: 弟弟的作业

Posted roronoa_zoro

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了问题 1073: 弟弟的作业相关的知识,希望对你有一定的参考价值。

/********************************************************************
@file     Main.cpp
@date     2017-5-8
@author   Zoro_Tiger
@brief    问题 1073: 弟弟的作业
          http://www.dotcpp.com/oj/problem1073.html
********************************************************************/
//!头文件
#include <cstdio>
#include <string>

//!程序入口
int main(int argc, const char* argv[])
{
    //!变量声明
    int right_answer_count = 0, number_a, number_b, number_c, number_result;
    char oper;
    std::string result;

    //!统计正确答案个数
    while (scanf("%d%c%d=%s", &number_a, &oper, &number_b, result.c_str()) != EOF)
    {
        number_c = (oper == + ? number_a + number_b : number_a - number_b);
        if (result != "?")
        {
            number_result = atoi(result.c_str());
            if (number_result == number_c)
            {
                ++right_answer_count;
            }
        }
    }

    //!显示结果
    printf("%d\n", right_answer_count);

    //!返回系统
    return 0;
}

 

以上是关于问题 1073: 弟弟的作业的主要内容,如果未能解决你的问题,请参考以下文章

《活着》片段

1073 Scientific Notation

动态SQL基础概念复习(Javaweb作业5)

HTML5期末大作业:餐饮美食网站设计——咖啡(10页) HTML+CSS+JavaScript 学生DW网页设计作业成品 web课程设计网页规划与设计 咖啡网页设计 美食餐饮网页设计...(代码片段

codeforces1073d

vlfeat nmake:致命错误 U1073:不知道如何制作“msvcr100.dll”