首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看全站
#include "graphics.h"

#include "stdlib.h" 

#include "dos.h" 

#include "bios.h"

#include "stdio.h"

#include "time.h"

......................
阅读全部 | udada 贴于 2016年8月11日 16:21     hide bbsi
Private Sub Command1_Click()
 Dim InDatExcel As Excel.Application  
 Dim InDatBook As Excel.Workbook 
 Dim InDatSheet As Excel.Worksheet
  CMDialog.CancelError = True                   
  On Error GoTo ErrorLine                                   
  CMDialog.FileName = "" '
  CMDialog.Flags = 4096                                         
  CMDialog.Filter = "Data File(*.xls)|*.xls"                  
  CMDialog.FilterIndex = 1       
  CMDialog.DialogTitle = "选取要导入的数据文件(*.xls)"         
  CMDialog.Action = 1                                        
......................
阅读全部 | 凤城玫瑰 贴于 2016年8月9日 11:37     hide bbsi
Shell "",vbNormalFocus
阅读全部 | GYZ0737 贴于 2016年8月5日 14:02     hide bbsi
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function MM_popupMsg(msg) { //v1.0
  alert(msg);
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
......................
阅读全部 | 一叶知秋冬 贴于 2016年8月5日 12:11     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
N:=9 
详细信息 : 变量 N 定义重复!
阅读全部 | 别念卿 贴于 2016年7月13日 18:52     hide bbsi
import cv2
img=cv2.imread("1.jpeg")
tag=cv2.imread("11.jpg")
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
tg = cv2.cvtColor(tag, cv2.COLOR_BGR2GRAY)
h=img.shape[0]
w=img.shape[1]
height=tg.shape[0]
width=tg.shape[1]

def matcher(a,b):
    for x in range(0,height):
......................
阅读全部 | qiqi不留白 贴于 2016年7月12日 21:18     hide bbsi
#include<stdio.h>
#include<stdlib.h>
cmp(const void*a,const void*b)
{
    return *(int *)a-*(int *)b;
}

int main()
{
    int n,j=1;
    while(scanf("%d",&n)!=EOF)
    {
......................
阅读全部 | xuyinhao 贴于 2016年7月9日 16:16     hide bbsi
上一页 171 172 173 174 175 176 177 178 179 180 下一页