目前分類:C/C++ (24)

瀏覽方式: 標題列表 簡短摘要

範例圖片:

dllerror.JPG  

AwEi 發表在 痞客邦 留言(2) 人氣()

使用前須加入以下 NameSpace

using namespace System::Threading;

AwEi 發表在 痞客邦 留言(1) 人氣()

用途 - 不可更改內容

AwEi 發表在 痞客邦 留言(0) 人氣()

本文轉貼自 http://bbs.wefong.com/viewthread.php?tid=413612&extra=page%3D2

鍵盤,螢幕輸出入

AwEi 發表在 痞客邦 留言(0) 人氣()

在專案中,加入一個 *.rc 的檔案,內容為

appicon ICON "xxx.ico"

AwEi 發表在 痞客邦 留言(2) 人氣()

我因為要製作魔獸爭霸登錄檔設定程式,所以需要使用到 WinAPI 函數

我上網查了很久,發現很多範例都是錯誤的,加上我英文不好,看不懂MSDN的說明= =

AwEi 發表在 痞客邦 留言(0) 人氣()

轉貼自 数据类型转换整理(全) - 仁者无敌C++

一、其它數據類型轉換為字符串

AwEi 發表在 痞客邦 留言(0) 人氣()

1. API之網路函數
WNetAddConnection 新增同一個網路資源的永久性連接

AwEi 發表在 痞客邦 留言(0) 人氣()

 

【C/C++ 教學網站】

AwEi 發表在 痞客邦 留言(0) 人氣()

#include "stdlib.h"

float mean(int n, float sample[]) //算平均
{
 float sum = 0.0;
 for(int i=0; i<n; i++) sum += sample[i];
 return(sum/n);
}

float var(int n, float sample[]) //標準差
{
 float sum = 0.0;
 float u = mean(n, sample);

 for(int i=0; i<n; i++) sum += (sample[i]-u) * (sample[i]-u);
 return(sum/n);
}
float u_rand() // 0 ~ 1
{
 return (float)rand()/RAND_MAX;
}

float n_rand() // 平均 0
{
 float sum = 0.0;

 for(int i=0; i<12; i++) sum += u_rand();
 return(sum-6);
}

float t_rand(int n, float u, float s) //漁夫 n->數量
{
 float *sample;

 sample = new float[n];

 for(int i=0; i<n; i++)
 {
  sample[i] = n_rand() * s + u;
 }
 
 return(mean(n, sample));
}

float f_rand(int k, int n,float u, float s) //可信度 u->平均值 s->標準差
{
 float *sample;
 float *group_mean;

 sample = new float [k*n];
 group_mean = new float [k];

 for(int i=0; i<k; i++)
 {
  for(int j=0; j<n; j++) sample[i*n+j ] = n_rand()*s+u;
  group_mean[i] = mean(n, sample + i*n);
 }
 float total_var = var(k, group_mean);
 delete group_mean;
 delete sample;
 return(total_var);
}

AwEi 發表在 痞客邦 留言(0) 人氣()

-----------------------------------------------
stack.h

AwEi 發表在 痞客邦 留言(0) 人氣()

------------------------------------------------
student.h

AwEi 發表在 痞客邦 留言(0) 人氣()

#include "stdafx.h"
#include "stdlib.h"

AwEi 發表在 痞客邦 留言(0) 人氣()

#include "stdafx.h"
#include "stdlib.h"

AwEi 發表在 痞客邦 留言(0) 人氣()

#include "stdafx.h"
#include "stdlib.h"

AwEi 發表在 痞客邦 留言(0) 人氣()

#include "stdafx.h"

int _tmain(int argc, _TCHAR* argv[])

AwEi 發表在 痞客邦 留言(0) 人氣()

#include "stdafx.h"
#include "stdlib.h"

AwEi 發表在 痞客邦 留言(0) 人氣()

#include "stdafx.h"
#include "stdlib.h"

AwEi 發表在 痞客邦 留言(0) 人氣()

#include "stdafx.h"
#include <time.h>

AwEi 發表在 痞客邦 留言(0) 人氣()

#include "stdafx.h"
#include "stdlib.h"

AwEi 發表在 痞客邦 留言(0) 人氣()

1 2