首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C++
#include <iostream>
#include <string>
using namespace std;

class student
{public:
 string name;
 int  num;

 float YuWen; //语文
 float ShuXue; //数学
 float English; //英语
......................
阅读全部 | 幸福321 贴于 2013年6月11日 11:28     hide bbsi
#include <graphics.h>
#include <conio.h>
#include<mmsystem.h>
#pragma comment(lib,"winmm.lib")
void ShowPlate();
void PlayGame();
bool flag=true;
int arr[16][16];
void main()
{
    mciSendString("play 高山流水.mp3",0,0,0);
initgraph(680,680);     //划定屏幕大小为680  680
......................
阅读全部 | 单纯的小孩 贴于 2013年6月3日 16:45     hide bbsi
MFC摄像头图像捕捉求高手指点
我用MFC做一个视频聊天软件 调用摄像头的时候 在 capSetCallbackOnVideoStream(m_hWndVideo, EncodeCallback); 的EncodeCallback 回调函数中 要怎么去获取图像信息了  
这个是回调函数
LRESULT CALLBACK EncodeCallback(HWND hWnd, LPVIDEOHDR lpVHdr)
{
    CServerDlg *vidcap=(CServerDlg *)capGetUserData(hWnd);
//    lpVHdr->dwBytesUsed; lpVHdr->lpData
//    return 1;
    if (lpVHdr->dwFlags&VHDR_DONE)
    {
        static BOOL bSend = TRUE;
        CServerDlg* pDlg = (CServerDlg*)AfxGetMainWnd();
......................
阅读全部 | yangyin54321 贴于 2013年5月24日 20:19     hide bbsi
#include<iostream>
#include<string>
using namespace std;
class Document
{
public:
Document(){};
~Document();
Document(char *name);
char *Name;
void PrintNameOf();
};
......................
阅读全部 | 新手多多帮助 贴于 2013年5月21日 11:01     hide bbsi
#include "iostream"
#include "string.h"
using namespace std;
#define N1 10
#define N2 10
#define N 20
void str_cat(char s1[],char s2[],char s[])
{
int i=0,j=0;
while(s1[i])
{
s[i]=s1[i];
......................
阅读全部 | singleton 贴于 2013年5月11日 21:15     hide bbsi
#include <iostream>
using namespace std;
template<class Type>
void Swap(Type *array,Type a,Type b)
{ Type temp;
temp=array[a];
array[a]=array[b];
array[b]=temp;
}
template<class Type>
void FastSort(Type *array,Type n)
{ for(int i=0;i<n;i++)
......................
阅读全部 | 不玩虚的 贴于 2013年5月11日 06:16     hide bbsi
//1.添加功能找到并删除一个学生数据,
//2.有序的维护链表 
#include<iostream>
#include<cstring>
using namespace std;
class CPerson
{
friend class CNode;
public:
CPerson(){}
CPerson(char*name,int age,char*str=0,char sex='M')
{
......................
阅读全部 | G梦 贴于 2013年5月9日 20:26     hide bbsi
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int i,j=0,a,b,c,m,n;
cin>>m>>n;
while((m!=0)||(n!=0))
{
for(i=m;i<=n;i++)
{
a=i/100;
......................
阅读全部 | C1830365552 贴于 2013年5月9日 08:25     hide bbsi
#include "iostream"
#include "string.h"
#define N1 10
#define N2 10
#define N 20
void str_cat(char s1[],char s2[],char s[])
{
int i=0,j=0;
while(s1[i])
{
s[i]=s1[i];
i++;
......................
阅读全部 | 人生如题 贴于 2013年5月6日 15:33     hide bbsi
#include <iostream>
#define PI 3.1415926
double sin(double x)
{
double s;
if(x>2*PI)
x-=2*PI*(int)(x/PI/2);
if(x*2>PI)
if(x<PI)
s=sin(PI-x);
else if(x*2<PI*3)
s=-sin(PI-x);
......................
阅读全部 | ZaneYork 贴于 2013年4月14日 04:44     hide bbsi
上一页 29 30 31 32 33 34 35 36 37 38 下一页