上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 忘发了,补上8.7#include using namespace std;template T SumArray(T arr[],int n){ T sum=0; for(int i=0;iT SumArray(T *arr[],int n)//arr是指向指针数组的指针{ T sum=0; for(int i=0;i<n;i++) sum+=*arr[i]; //arr[i]是一个指针,+*之后才是其中的数值; return sum;};struct debts{ char name[20]; double amount;};void main87(){ int things[6.. 阅读全文
posted @ 2014-04-13 20:32 天下纵横C++ 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 8.4发现忘记发上来了,现在补上。8.4#include#include //出问题时,使用的是cstring,但换成string一样出问题using namespace std;struct stringy{ char *str; int ct;};void set(stringy &beany,const char t[]);void show(const stringy &beany,int count=0);void show(const char t[],int count=0);void main84(){ stringy beany; char testing[] 阅读全文
posted @ 2014-04-13 20:31 天下纵横C++ 阅读(146) 评论(0) 推荐(0) 编辑
摘要: Person.h#ifndef Person_H_#define Person_H_#include using namespace std;class Person{private: static const int LIMIT=25; string lname; char fname[LIMIT];public: Person(){lname="default";fname[0]='\0';} Person(const string &ln,const char *fn="Heyyou"); ~Person(); void s 阅读全文
posted @ 2014-04-13 20:25 天下纵横C++ 阅读(182) 评论(0) 推荐(0) 编辑
摘要: bank.h#ifndef bank_H_#define bank_H_#include using namespace std;class Bank{ private: string name; string account; double money; void setIn(double in){money+=in;}; void setOut(double out){money-=out;}; double getMoney(){return money;}; public: Bank(string n,string a,double m); ~Bank(); //vo... 阅读全文
posted @ 2014-04-13 19:40 天下纵横C++ 阅读(338) 评论(0) 推荐(0) 编辑
摘要: SALES.h#ifndef SALES_H_namespace SALES{ const int QUARTERS=4; struct Sales{ double sales[QUARTERS]; double average; double max; double min; }; void setSales(Sales &s,const double ar[],int n); void setSales(Sales &s); void showSales(const Sales &s);} #endifSALES.cpp#include "SALES.h& 阅读全文
posted @ 2014-04-13 14:12 天下纵横C++ 阅读(292) 评论(0) 推荐(0) 编辑
摘要: //9.3这道题比较少见,我之前在百度都找不到我就发题目上来吧/*下面是一个结构声明:struct chaff{ char dross[20]; int slag;} 编写一个程序,使用定位new运算符将一个包含两个这种结构的数组放在一个缓冲区内。然后,给结构的成员赋值(对于char数组,使用strcpy()),并使用一个循环来显示内容,一种方法是像程序清单9.10那样将一个静态数组用作缓冲区,另一种方法是使用常规的new运算符来分配缓冲区。*/#include#include #include using namespace std;struct chaff{ char dross[20]; 阅读全文
posted @ 2014-04-13 12:28 天下纵横C++ 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 投给了金山,感觉信心真心一般般啊。毕竟学C++有点晚,数据结构又忘得差不多了。所以还是赶紧看完这本《C++ primer plus》大作,然后突击一下数据结构,看下17号的笔试结果如何把。恩,加油! 阅读全文
posted @ 2014-04-13 12:08 天下纵横C++ 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 9.2#include #include #include using namespace std;const int ArSize=10;void strcount(const string &s);void main92(){ string input; string input2; char next; cout>input,然后碰到空格的时候,就直接input=input+" ";但是似乎总会有点问题,最后找到了getline输入格式,发现对输入输出这一块还不是很多透彻,还需继续努力! 阅读全文
posted @ 2014-04-12 23:54 天下纵横C++ 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 标准输出函数cout :/*关于浮点数的格式*/#include void main(){ float f=2.0/3.0,f1=0.000000001,f2=-9.9; coutvoid main(){ float f=2.0/3.0,f1=0.000000001,f2=-9.9; cout// 操作元manipulatorcout.setf(ios::fixed);cout.setf(ios::showpoint);cout.precision(2); //用两位小数显示cout// 操作元manipulatorcout.setf(ios::fixed);cout.setf(ios::sh 阅读全文
posted @ 2014-04-12 22:35 天下纵横C++ 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 今天下午去了图书馆,然后发现居然从1点玩手机玩到三点,额,好吧,有点小郁闷。这两天效率有点低。发现大学前两年没有好好学习,或许以后可能会后悔吧。但是过去的都已经过去了,把握好当下才是最重要的。你所浪费的今天,都是你死去昨天的所期望的明天。发现自己好像大学学到的东西真心不是很多,这里我指的是技术。以后工作照哪方面的呢?C++工程师,游戏开发,还是游戏安全,或者是往服务器编程方面走呢。还是不要拿自己的短处和别人的长处比。看过一张图片,很有启迪,发上来给大家看看。为何非要贪图快捷走人多的哪一条路呢。慢慢搬砖,总会走到你想到的地方。 阅读全文
posted @ 2014-04-12 21:41 天下纵横C++ 阅读(128) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页