#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
typedef struct Item{
double coef;
int expn;
struct Item *next;
}Item,*Polyn;
#define CreateItem(p) p=(Item *)malloc(sizeof(Item));
#define DeleteItem(p) free((void *)p);
/************************************************************/
/* 判断选择函数 */
......................
阅读全部
|
Axis_张
贴于 2012年10月25日 07:51
hide
bbsi
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
typedef struct Item{
double coef;
int expn;
struct Item *next;
}Item,*Polyn;
#define CreateItem(p) p=(Item *)malloc(sizeof(Item));
#define DeleteItem(p) free((void *)p);
/************************************************************/
/* 判断选择函数 */
......................
阅读全部
|
Axis_张
贴于 2012年10月25日 07:46
hide
bbsi
#include<stdio.h>
#include<string.h>
#define SIZE 81
#define STOP "quit"
#define LINE 10
int main(void)
{
char input[LINE][SIZE];
......................
阅读全部
|
danaiyi
贴于 2012年10月19日 20:11
hide
bbsi
\main.c||In function 'main':|
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c;
scanf ("%d,%d",&a,&b);
int max(int x,int y);
c=max(a,b);
printf("max=%d\n",c);
......................
阅读全部
|
天剑杀手
贴于 2012年10月11日 19:09
hide
bbsi
#include "stdio.h"
#define N 9
#define OVERFLOW 0
#define OK 1
int KeyW[N]={4,7,5,9,3,2,6,1,8};
typedef struct LNODE{
int keyword;
......................
阅读全部
|
风之子MIKEY
贴于 2012年10月9日 19:22
hide
bbsi
#include "stdio.h"
#define N 9
#define OVERFLOW 0
#define OK 1
int KeyW[N]={4,7,5,9,3,2,6,1,8};
typedef struct LNODE{
int keyword;
......................
阅读全部
|
a10086
贴于 2012年10月6日 00:34
hide
bbsi
// RtuProcess.cpp: implementation of the CRtuProcess class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "rtugprs.h"
#include "RtuProcess.h"
#include "DataType.h"
#include "MainFrm.h"
#include "Tools.h"
#include "PaintView.h"
#include "SQLMng.h"
......................
阅读全部
|
wo3312440947
贴于 2012年9月29日 10:39
hide
bbsi
国外的一个团队,在群论的基础上研究出了矩阵相乘的新的快速的方法,源程序好像是C++之类的语言,我同学以前下载过,但是现在找不到了,恳请大家帮忙啊!重谢啊!我的邮箱liusujuan0808@126.com 感激啊!
阅读全部
|
liusujuan080
贴于 2012年9月25日 14:34
hide
bbsi
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#define MAXSIZE 1024
typedef int datatype;
typedef struct
{
datatype data[MAXSIZE];
int top;
}SeqStack;
SeqStack *Init_SqeStack()
......................
阅读全部
|
莫问出处
贴于 2012年9月19日 19:30
hide
bbsi