#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
struct book_information{
char name[20]; //书名
char chuban[20]; //出版
char year[5]; //年号
char ISBN[20];
char number[20]; //书号
char zhubian[20]; //主编
char shuliang[2];
......................
阅读全部
|
赵余
贴于 2015年4月29日 23:50
hide
bbsi
#import <Foundation/Foundation.h>
#include <stdint.h>
void sort(int *, int *);
int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
int *p1, *p2;
int a,b;
printf("input:\n");
......................
阅读全部
|
tom7748
贴于 2015年4月26日 19:21
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
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
#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
#include"stdio.h"
int max(int a,int b)
{
int max=(a>b)?a:b;
return max;
}
void main ()
{
int a,b;
printf("输入两个整数:");
scanf("%d%d",&a,&b);
printf("%d\n",max(a,b));
......................
阅读全部
|
鱼游海底
贴于 2015年4月18日 11:56
hide
bbsi
#include"stdio.h"
int main()
{
int a,b;
printf("输入两个整数:");
scanf("%d%d",&a,&b);
if(a>b)printf("max=%d\n",a);
else printf("max=%d\n",b);
return 0;
}
阅读全部
|
鱼游海底
贴于 2015年4月18日 11:49
hide
bbsi
#include <stdlib.h>
#include <stdio.h>
#include <winsock2.h> //加入WinSock的头文件
#include <WS2TCPIP.h> //设置IP_HDRINCL需要
#include <time.h>
#pragma comment(lib,"Ws2_32.lib") //加入库函数
#include <iostream>
using namespace std;
typedef struct //定义IP首部
{
unsigned char h_verlen; //4位首部长度,4位IP版本号 无符号范围较广在正值
unsigned char tos; //8位服务类型TOS
......................
阅读全部
|
T_MACC
贴于 2015年4月17日 20:35
hide
bbsi
int main()
{ int i,j,n=0;
for (i=1;i<=4;i++)
for (j=1;j<=5;j++,n++)
{ if (n%5==0) printf (“\n”);
printf ("%d\t",i*j);
}
printf("\n");
return 0;
}
阅读全部
|
菀菀菀
贴于 2015年4月15日 23:38
hide
bbsi