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

资源简介

C++实战源码-李白喝酒问题(入门级实例043).zip

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “iostream.h“
int main()
{
double dSum = 0; //定义一个双精度变量,记录累加和的结果
for(int i=0;i<6;i++) //根据遇到店和花的总次数循环
{
if(i%2 == 0) //如果i%2等于0时为遇到花
{
dSum += 1; //将酒的数量加1斗
}
else //否则为遇到店
{
dSum /= 2; //将酒的数量减半
}
}
cout << “╔═════════════════╗“ < cout << “║                                  ║“ < cout << “║       酒壶中有: “ << dSum << “斗          ║“ << endl; //输出结果
cout << “║                                  ║“ < cout << “╚═════════════════╝“< return 0;
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         778  2010-07-30 14:58  alcohol\alcohol.cpp
     文件        4548  2010-07-30 14:43  alcohol\alcohol.dsp
     文件         539  2010-07-30 14:43  alcohol\alcohol.dsw
     文件         294  2010-07-30 14:43  alcohol\StdAfx.cpp
     文件         769  2010-07-30 14:43  alcohol\StdAfx.h

评论

共有 条评论