• 大小: 2.83KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++实战源码-促销商品的折扣计算(入门级实例048).zip

资源截图

代码片段和文件信息

// Agio.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“

int main()
{
printf(“╔═════════════════╗\n“);
printf(“║       满 500可享受9折优惠        ║\n“);
printf(“╠═════════════════╣\n“);
printf(“║       满1000可享受8折优惠        ║\n“);
printf(“╠═════════════════╣\n“);
printf(“║       满2000可享受7折优惠        ║\n“);
printf(“╠═════════════════╣\n“);
printf(“║       满3000可享受6折优惠        ║\n“);
printf(“╠═════════════════╣\n“);
printf(“║       满5000可享受5折优惠        ║\n“);
printf(“╚═════════════════╝\n“);
printf(“请输入你消费的金额:\n“);
float dMoney;
scanf(“%f“&dMoney);
int iMoney = dMoney;
switch (iMoney / 500)
{
case 0:
printf(“你的消费没有折扣,金额是:%0.2f\n“dMoney);
break;
case 1:
printf(“你的消费享受9折优惠,金额是:%0.2f,优惠后的金额是:%0.2f\n“dMoneydMoney*0.9);
break;
case 2: case 3:
printf(“你的消费享受8折优惠,金额是:%0.2f,优惠后的金额是:%0.2f\n“dMoneydMoney*0.8);
break;
case 4: case 5:
printf(“你的消费享受7折优惠,金额是:%0.2f,优惠后的金额是:%0.2f\n“dMoneydMoney*0.7);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1529  2010-08-04 10:52  Agio\Agio.cpp
     文件        4512  2010-08-04 08:36  Agio\Agio.dsp
     文件         533  2010-08-04 08:36  Agio\Agio.dsw
     文件         291  2010-08-04 08:36  Agio\StdAfx.cpp
     文件         769  2010-08-04 08:36  Agio\StdAfx.h

评论

共有 条评论