C++小程序
糖醋饺子
这个作者很懒,什么都没留下…
展开
-
C++文件操作:读取文件字符数
打开文件,逐个字符读取该文件,直到文件末尾,然后指出该文件包含多少个字符。#include <iostream>#include <fstream>#include <string>using namespace std;int main(){ ifstream file; file.open("zs.txt"); if (!file.is_open())//is_open()判断前面是否调用了open(),打开成功返回1否则返回0 { cout<<"Could no原创 2015-12-28 09:53:27 · 1362 阅读 · 0 评论 -
C++primer plus第六版课后编程题答案7.1
编写程序,不断要求用户输入两个数,直到其中一个为0。对于每个数,程序将使用一个函数计算他们的调和平均值,并将结果返回给main(),而后者将报错。原创 2015-12-28 11:12:17 · 144 阅读 · 0 评论 -
C++primer plus第六版课后编程题答案7.5
输入一个整数,递归实现计算阶乘。#include <iostream>using namespace std;long Jiecheng(int );int main(){ cout<<"请输入一个整数:"<<endl; int number; while (cin>>number) { long result = Jiecheng(number); cout<<"阶乘 "<<number<<"! ="<<result<<endl; cout<<"请继续输入一个整数:"<原创 2015-12-28 11:37:26 · 146 阅读 · 0 评论