#include <stdio.h>
#define JUDEGNUM 3 /* 裁判数 */
#define NAMELEN 20 /* 姓名最大字符数 */
#define CODELEN 10 /* 号码最大字符数 */
#define FNAMELEN 80 /* 文件名最大字符数 */
#define BUFFSIZE 128 /* 缓冲区最大字符数 */
char judgement[JUDEGNUM][NAMELEN+1] = {"judgementA","judgementB","judgementC"};
struct AthleteScore
{
char name[NAMELEN+1]; /* 姓名 */
char code[CODELEN+1]; /* 学号 */
......................
阅读全部
|
紫夕
贴于 2013年5月1日 10:05
hide
bbsi
#include <stdio.h>
#include<math.h>
main()
{
int x,a,b,c,e;
printf("在键盘上任意输入一个三位数x:\n");
scanf("%d",&x);
x=abs(x);
a=x/100;
b=(x-a*100)/10;
c=x% 10;
e=c*100+b*10+a;
......................
阅读全部
|
CPer
贴于 2013年4月26日 23:19
hide
bbsi
// 1.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
void InputDate(struct Date *p);
void OutputDate(struct Date *p);
struct Time
{
char HH[3];
char MM[3];
char SS[3];
};
......................
阅读全部
|
张喜
贴于 2013年4月26日 23:12
hide
bbsi
#include<stdio.h>
#include<stdlib.h>
#include <conio.h>
#include<math.h>
#include<string.h>
#define N 25 //最大表达式长度
#define OP 1 //OP为运算符,值为1
#define NUM 0 //NUM为数字,值为0
#define MAXSIZE 100
typedef char datatype;
typedef struct{
datatype a[MAXSIZE];
......................
阅读全部
|
lilylis
贴于 2013年4月24日 22:08
hide
bbsi
#include<stdio.h>
#include<stdlib.h>
void main()
{
int password,password1 = 123;
int i=1,a=10000;
char Key,Cmoney;
while(1)
{
do
{
......................
阅读全部
|
庞小超
贴于 2013年4月24日 21:35
hide
bbsi
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
typedef struct node
{
int data;
struct node *next;
}lnode,*linklist;
creatlist(linklist l)
{
lnode *p,*q;
int i,j;
......................
阅读全部
|
sunxueguang1
贴于 2013年4月24日 20:25
hide
bbsi
请帮我看看我的这段代码哪儿出错了???
shell.c
#ifndef SHELL_H
#define SHELL_H
void ShellSort(int data[],int count);
#endif
shell.h
#include"shell.h"
......................
阅读全部
|
高庆彪
贴于 2013年4月24日 10:00
hide
bbsi
main(){printf("\tA\n");printf("\tA\n");printf("\ \ \ \ \ \ AAAAA\n");printf("\tA\n");printf("\tA\n");}
阅读全部
|
zhujianlin
贴于 2013年4月23日 11:12
hide
bbsi
#include <stdio.h>
#include <stdlib.h>
#define N 1000
int main(void) {
int i, j;
int prime[N+1];
for(i = 2; i <= N; i++)
prime[i] = 1;
for(i = 2; i*i <= N; i++) { // 这边可以改进
if(prime[i] == 1) {
for(j = 2*i; j <= N; j++) {
if(j % i == 0)
......................
阅读全部
|
hanbeijing
贴于 2013年4月20日 21:36
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-Language" content="zh-cn" />
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title> 一个精彩的JS+CSS精彩导航实例</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css">
h4,div,ul,li,span{ padding:0px; margin:0px}
/* 最外面DIV的样式 */
#slidingBlock {
width:980px;
......................
阅读全部
|
chenxianshen
贴于 2013年4月19日 15:01
hide
bbsi