#include "stdafx.h"
#include <iostream>
#include "Person.h"
using std::cout;
using std::endl;
main()
{
string str("tony");
CPerson p1;
CPerson p2 = CPerson(1, str,25,8000);
cout<<"p1的信息:"<<endl;
cout << "m_shAge is:" << p1.getAge() << endl;
......................
阅读全部
|
春流平岸
贴于 2017年2月9日 22:04
hide
bbsi
#include <iostream>
using namespace std;
int sb(int a)
{
a=a+1;
cnm(a);
return a;
}
int cnm(int a)
{
a=a-1;
return a;
......................
阅读全部
|
一の小菜鸟
贴于 2017年1月12日 12:24
hide
bbsi
#include "CApplication.h"
#include "CWorksheets.h"
#include "CWorksheet.h"
#include "CWorkbooks.h"
#include "CWorkbook.h"
#include "CValidation.h"
#include "CRange.h"
#include "CRanges.h"
#include "CFont0.h"
//
typedef enum {
......................
阅读全部
|
xyttppxy
贴于 2016年11月26日 09:36
hide
bbsi
#include<iostream>
#include<fstream>
#include<string>
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
//#include<iomanip>
using namespace std;
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define LEN(a) sizeof(a)/sizeof(a[0])
......................
阅读全部
|
编程的菇凉
贴于 2016年11月13日 19:57
hide
bbsi
include<iostream>
#include<vector>
#include"math.h"
#include<iomanip>
using namespace std;
vector<bool> zhengshu;//存整数部分的二进制
vector<bool> xiaoshu;//存小数部分的二进制
vector<bool> get_zhengshu_2b(float a)
{
......................
阅读全部
|
杰少_li
贴于 2016年11月1日 16:11
hide
bbsi
#include<iostream>
#include<vector>
#include"math.h"
#include<iomanip>
using namespace std;
void fun(bool m)//打印
{
cout<<m;
}
vector<bool> get_hex_2b(unsigned int a)//将十六进制转化成二进制
......................
阅读全部
|
杰少_li
贴于 2016年11月1日 16:06
hide
bbsi
#include <iostream>
using namespace std;
int main()
{
double y=0,i=-1;
int n=1, s;
while(n<100)
{
i=i*(-1);
n=n+1;
s=i*(1.0/n);
y=y+s;
......................
阅读全部
|
lzl5836
贴于 2016年8月20日 18:45
hide
bbsi
int file_chunk_cdc(int fd, vector* features) {
unsigned char buf[BUF_MAX_SIZE] = {0};
unsigned char buf_bz[BUF_MAX_SIZE] = {0};
unsigned char block_buf[BLOCK_MAX_SIZE * 2] = {0};
unsigned char last_block_buf[BLOCK_MAX_SIZE * 2] = {0};
char win_buf[BLOCK_WIN_SIZE + 1] = {0};
unsigned char md5_str[33] = {0};
unsigned char adler_pre_char;
unsigned char md5_checksum[32 + 1] = {0};
unsigned int bpos = 0;
unsigned int rwsize = 0, bzsize = 0;
unsigned int exp_rwsize = BUF_MAX_SIZE;
......................
阅读全部
|
hyj0616
贴于 2016年8月1日 20:31
hide
bbsi
//这是一个头文件,
class function
{
public:
virtual double operator() (double x) const = 0;
virtual ~function(){}
};
class myfunction :public function
{
public:
virtual double operator()(double x)const;
......................
阅读全部
|
周万里
贴于 2016年7月26日 17:53
hide
bbsi
#include<iostream>
#include<cmath>
using namespace std;
class Point{
public:
Point(int xx=0,int yy=0){
x=xx;
y=yy;
}
Point(Point &p);
int getX(){return x;}
......................
阅读全部
|
qq923012373
贴于 2016年7月24日 07:19
hide
bbsi