#include "stdio.h"
double tax3500(double personaTAX)//
{
double a,tax;
a=(personaTAX-3500);
{
if(a<=0)
tax=0.0;
else if(a>0 && a<=1500)
tax=a*0.03;
else if(a>1500 && a<=4500)
tax=a*0.1-105;
......................
阅读全部
|
心定事成
贴于 2012年10月29日 22:04
hide
bbsi
#include<stdio.h>
#include<math.h>
int main(void)
{
double x0,x1,eps,n,f(),df();
printf("plase input x0=\n");
scanf("%lf",&x0);
printf("plase input eps=\n");
scanf("%lf",&eps);
n=0;
......................
阅读全部
|
梁朝斌
贴于 2012年10月28日 23:49
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: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