c语言高考加油代码
“c语言高考加油代码”相关的资料有哪些?“c语言高考加油代码”相关的范文有哪些?怎么写?下面是小编为您精心整理的“c语言高考加油代码”相关范文大全或资料大全,欢迎大家分享。
c语言源代码
acm经典百题
#include
C语言2048源代码
#include void Generat_picture(int d[N][N],char c[N][N][N],int s); void Control_synthesis(int a[N][N]); void add_num(int a[N][N]); void swap(int *a,int *b); int score(int a[N][N]); int moveup(int a[N][N]); int movedown(int a[N][N]); int moveleft(int a[N][N]); int moveright(int a[N][N]); int main() { int d[N][N]; char c[N][N][N]; int i,j,s=2; system(\ for(i=0; i add_num(d); Generat_picture(d,c,s); Control_synthesis(d); s=score(d);
C语言串口通信-源代码
C语言串口通信-源代码
#include <stdio.h>
#include <dos.h>
#include <conio.h>
#include <string.h>
#define COM232 0x2f8
#define COMINT 0x0b
#define MaxBufLen 500
#define Port8259 0x20
#define EofInt 0x20
static int comportaddr;
static char intvectnum;
static unsigned char maskb;
static unsigned char Buffer[MaxBufLen];
static int CharsInBuf,CircIn,CircOut;
static void (interrupt far *OldAsyncInt)();
static void interrupt far AsyncInt(void);
void Init_COM(int ComPortAddr, unsigned char IntVectNum, int Baud,
un
MODBUS通讯+C语言源代码
MODBUS通讯+C语言源代码
/*********************************************************************************/
/*函数名称: strmcpy()
*输入参数: 共 个参数;
*输出参数: 共 个参数;
*返回值:
*需储存的参数: 共 个参数;
*功能介绍:
(1)字符数组拷贝;
*修改日志:
*[2006-3-6 17:07] Ver. 1.00
开始编写;
完成;
/* */
/*********************************************************************************/
void strmcpy(unsigned char dest[], unsigned char src[], int count) {
int i;
for(i = 0; i < count; i ++)
{
dest[i] = src[i];
}
dest[i] = '\0';
}
/**************************************
贪吃蛇代码(C语言)
//2010.06.09
//zook0k
///zook0k/
//
//
//qq:83310093
#include <windows.h>
#include <stdio.h>
#include<time.h>
#define C_W 516
#define C_H 548
//#define C_W 1024
//#define C_H 1024
#define GO_RIGHT 0x01
#define GO_DOWN 0x02
#define GO_LEFT 0x03
#define GO_UP 0x04
#define SNAKE_NUMBER 30
typedef struct node_struct
{
unsigned char direction;
unsigned char cnt;
}s_node,*s_node_handle;
s_node s_count[SNAKE_NUMBER ];
typedef struct SNAKE
{
unsigned char Head_X;
unsigned char Head_Y;
unsigned char Tail_X;
unsigned char Tail_Y;
C语言数据结构+代码
学院
计算机科学系
数据结构课程设计报告
设计名称: 压缩器/解压器 姓 名: 学 号:
专业班级: 08软件技术(1)班 系 (院): 计算机科学系 设计时间: 2009~2010学年第二学期 设计地点: 六楼机房
目 录
一 需求分析----------------------------------------------------------------------------------------3 二 概要设计----------------------------------------------------------------------------------------3 三 详细设计----------------------------------------------------------------------------------------6 四 测试与分析-----------------
学生管理系统 c语言源代码
学生管理系统 c语言源代码
#include <stdio.h>
#include <dos.h>
#include <string.h>
#include <stdlib.h>
#include <malloc.h>
#define SIZE 8
struct student
{
char name[20];
char num[15];
int score[5];
float ave;
struct student *next;
}stu[SIZE],temp,s;
void shuru()
{
int i,j,sum,length,flag=1,a;
FILE *fp;
while(flag==1)
{
printf("Define a range>class number:");
scanf("%d",&a);
printf("Input the total number of the class(<a):");
scanf("%d",&length);
if(length<a)
flag=0;
}
for(i=0;i
C语言编写象棋程序代码
可编辑/*--------------------chess.c----------------------*/
#include "dos.h"
#include "stdio.h"
/*----------------------------------------------------*/
#define RED 7
#define BLACK 14
#define true 1
#define false 0
#define SELECT 0
#define MOVE 1
#define RED_UP 0x1100
#define RED_DOWN 0x1f00
#define RED_LEFT 0x1e00
#define RED_RIGHT 0x2000
#define RED_DO 0x3900
#define RED_UNDO 0x1000
#define BLACK_UP 0x4800
#define BLACK_DOWN 0x5000
#define BLACK_LEFT 0x4b00
#define BLACK_RIGHT 0x4d00
#define BLACK_DO 0x1c00
#define BLACK_UNDO
c语言实现远程关机代码
#include printf(\★★★★★★★★★★★★★★★★★★★★★★★★★★★★★\\n\ printf(\ printf(\◆◆◆◆◆◆◆◆关机软件◆◆◆◆◆◆ ◆◆\\n\ printf(\◆◆ 1.实现10分钟内的定时关闭计算机 ◆◆\\n\ printf(\◆◆ 2.立即关闭计算机 ◆◆\\n\ printf(\◆◆ 3.注销计算机 ◆◆\\n\ printf(\◆◆ 4.关闭并重启计算机 ◆◆\\n\ printf(\◆◆ 5.休眠计算机 ◆◆\\n\ printf(\◆◆ 6.远程目标计算机重启 ◆◆\\n\ printf(\◆◆ 7.远程目标计算机关闭 ◆◆\\n\ printf(\◆◆ 8.退出系统 ◆◆\\n\ printf(\◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ ◆◆\\n\ printf(\ print
C语言简单程序代码
以下代码亲自运行成功,可黏贴到vc中运行
gets和puts函数 #include\void main() { char str[20]; gets(str);//输入字符串 puts(str);//输出字符串 }
整型、字符、字符串、一维数组的初始化、输入和输出 #include\#include\void main() { int i = 2; printf(\请输入一个int型\ int ii; scanf(\ printf(\//字符类型 char c = 'x'; printf(\请输入一个char型\ char cc; scanf(\ //cc = getchar(); printf(\ //putchar(cc); //字符串型 char str[] = \ printf(\请输入一个字符串类型\ char strr[100];//必须指定大小 //scanf(\字符数组名就代表了地址 gets(strr);//字符串输入函数 //printf(\ puts(strr); //一维数组
int a[5] = {1,2,3,4,5}; for(int j = 0;j < 5;j ++)
printf