#include<iostream>
using namespace std;
void g(int n)
{
cout<<"开始:n="<<n<<endl;
if(n==0)
return;
g(n/2);
cout<<"结束:n="<<n<<endl;
}
int main()
......................
阅读全部
|
尚志留恋
贴于 2015年4月24日 16:58
hide
bbsi
#include<stdio.h>
int sort(int,int);
void main()
{
int *p1,*p2,*p;
int a,b;
scanf("%d%d",&a,&b);
p1=&a;
p2=&b;
sort(a,b);
}
......................
阅读全部
|
scurjc
贴于 2015年4月24日 11:32
hide
bbsi
//岗位类别联动岗位等级
function chooseGwdj(){
var g001 = $('#g001').val();
var gwhtml;
if(g001=='glgwdj'){
gwhtml = "<zw:seledata id='g002' code='glgwdj' />";
}else if(g001=='jsgwdj'){
gwhtml = "<zw:seledata id='g002' code='jsgwdj' />";
}else if(g001=='syjsgwdj'){
gwhtml = "<zw:seledata id='g002' code='syjsgwdj'/>";
}else{
gwhtml = "<select id='g002'><option value=''>--请选择--</option></select>";
......................
阅读全部
|
心疼小小可爱
贴于 2015年4月24日 10:59
hide
bbsi
#include <iostream>
using namespace std;
class date{
public:
date();
date(int y,int m, int d);
~date();
date(date &d);
void settime(int y,int m,int d);
void showtime();
private:
int year;
......................
阅读全部
|
Konglinghui
贴于 2015年4月24日 00:08
hide
bbsi
<%
StudentID=Request("StudentID")
ID=Request("ID")
Sname=Request("Sname")
Subject=Request("Subject")
if StudentID="" then %>
<script language=vbscript>
MsgBox "错误:请输入你的准考证号!"
location.href = "javascript:history.back()"
</script>
<%
end if
......................
阅读全部
|
zwy207
贴于 2015年4月22日 18:10
hide
bbsi
int su=0;
void resvnum(int k)
{
if(k==0) return ;
int n=k % 10;
k/=10;
su=su*10+n;
resvnum(k);
}
阅读全部
|
wp231957
贴于 2015年4月22日 10:03
hide
bbsi
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>动漫style</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="<?php echo site_url('assets/front/http://www.tonytheme.com/buyshop-html/favicon.png');?>">
<link href="<?php echo site_url('assets/front/css/reset.css');?>" rel="stylesheet">
<link href="<?php echo site_url('assets/front/css/bootstrap.css');?>" rel="stylesheet">
......................
阅读全部
|
刘笑笑
贴于 2015年4月21日 22:45
hide
bbsi
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class login : System.Web.UI.Page//这个是 声明一个 Login类,继承自System.Web.UI.Page,它是一个公共部分类
......................
阅读全部
|
Ms姜
贴于 2015年4月21日 22:31
hide
bbsi
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<malloc.h>
#include<math.h>
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
struct SqStack{
int *base;
int *top;
int stacksize;
};
......................
阅读全部
|
娃娃菜
贴于 2015年4月21日 22:23
hide
bbsi
我想建立一种索引,但是要能快速高效的能够索引到海量数据,大概有几百万条的生物DNA序列,要能准确的查找到所在序列编号与位置,而且所占内存还要小!!!怎么办???
阅读全部
|
所以,散了吧
贴于 2015年4月21日 22:05
hide
bbsi