• 0030-购买衣服


    题目

    购买衣服
    难度级别:A; 运行时间限制:1000ms; 运行空间限制:51200KB; 代码长度限制:2000000B
    试题描述
    衣服每件 95 元,若消费满300元,可打八五折。输入购买衣服的件数,输出需要支付的金额(单位:元)。
    输入
    一个正整数 n,表示购买衣服的数量。
    输出
    一个数,表示需要支付的购物款。
    输入示例
    2
    输出示例
    190
    其他说明
    数据范围:钱数只记整数部分(四舍五入)。

    分析

        终于不用学数学公式了……来学学分支。

        用法:

    if()
    else if()
    else
    

        满足if括号内的条件则执行if后的内容,若不满足则执行else。

    代码

    #include<bits/stdc++.h>
    using namespace std;
    int n;
    int main()
    {
    	scanf("%d",&n);
    	if(n*95>300) cout<<n*95*0.85;//满300元打八五折。
    	else printf("%d",n*95);//不够300元不打折
    	return 0;
    }  
    作者:18西斯光剑
    出处:https://www.cnblogs.com/DARTH-VADER-EMPIRE/
    Copyright ©2018-2020 18西斯光剑
    All Rights Reserved.
  • 相关阅读:
    泛型与非泛型
    C# 调用CMD,执行DOS命令
    数据库设计随笔(ZZ)
    关于三层开发(zz)
    三层架构学习(转)
    Node.js & child_process All In One
    HTML5 Canvas Tag Cloud All In One
    macOS & VSCode terminal show current git branch All In One
    飞书 excel 固定列 All In One
    git diff one of committed file All In One
  • 原文地址:https://www.cnblogs.com/DARTH-VADER-EMPIRE/p/9491599.html
Copyright © 2020-2023  润新知