import java.util.*;
public class student
{
class Node
{
public String name ;
public String ID;
public int java ;
public int os;
public int PE;
public int total;
......................
阅读全部
|
woxingx
贴于 2013年4月27日 02:54
hide
bbsi
import java.util.*;
public class student
{
class Node
{
public String name ;
public String ID;
public int java ;
public int os;
public int PE;
public int total;
......................
阅读全部
|
woxingx
贴于 2013年4月27日 02:45
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
implementation
{$R *.dfm}
var
m:array[1..6] of real;
function max1(m:array [ 1..6] of real):real;
var
i,j:integer;
k:real;
......................
阅读全部
|
锋恒想你
贴于 2013年4月26日 08:14
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