码迷,mamicode.com
首页 > 其他好文 > 详细

请输入相应数字选择需要执行的运算: 1 加法 2 减法

时间:2014-05-28 18:33:57      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   a   int      

/*

题目:程序运行的时候提示下列信息

 请输入相应数字选择需要执行的运算:

 1 加法

 2 减法

 

 用户选择运算后,再提示用户输入两个需要进行运算的整数,输入完毕后就输出运算结果

*/

#include <stdio.h>

 

int main()

{

    // 1. 提示用户选择计算类型

    printf("请输入相应数字选择需要执行的运算:\n");

    printf("1 加法\n");

    printf("2 减法\n");

    

    // 2. 定义变量存储用户选择的计算类型

    int type = 0;

    

    // 3. 让用户输入计算类型

    scanf("%d", &type);

    

    if (type!=1 && type!=2)

    {

        // type值输入不合理,就直接退出程序

        printf("非法选择\n");

        return 0;

    }

    

    // 4.提示用户输入两个计算的数值

    printf("请连续输入两个需要进行运算的整数,并且以空格隔开\n");

    

    // 5.定义2个变量存储数值

    int num1, num2;

    scanf("%d %d", &num1, &num2);

    

    // 6.计算

    int result;

    if (type == 1) {

        result = num1 + num2;

        printf("%d + %d = %d\n", num1, num2, result);

    } else if (type == 2) {

        result = num1 - num2;

        printf("%d - %d = %d\n", num1, num2, result);

    }

    return 0;

}

请输入相应数字选择需要执行的运算: 1 加法 2 减法,布布扣,bubuko.com

请输入相应数字选择需要执行的运算: 1 加法 2 减法

标签:style   c   class   a   int      

原文地址:http://www.cnblogs.com/sunyao/p/3754861.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!