腾讯文库搜索-C语言游戏源代码

腾讯文库

C语言入门经典案例及源代码

循环控制输出图案【程序1】 题目:输出9*9口诀。 1.程序分析:分行与列考虑,共9行9列,i控制行,j控制列。 2.程序源代码: #include "stdio.h" main() {  int i

俄罗斯方块C语言源代码

俄罗斯方块C语言源代码.txt43风帆,不挂在桅杆上,是一块无用的布;桅杆,不挂上风帆,是一根平常的柱;理想,不付诸行动是虚无缥缈的雾;行动,而没有理想,是徒走没有尽头的路。44成功的门往往虚掩着,只

C语言图书管理系统源代码

#include<stdio.h>#include<stdlib.h>#include<string.h>struct tushu{ /*图书结构体*/ char num[10

员工管理系统c语言源代码

#include<string.h> #include<stdio.h> #define N 10000      /*员工的最大数*/ typedef struct wage { float wag

C语言空间后方交会源代码

#include<stdio.h>#include<math.h>#define n 4 //控制点个数#define PI 3.14159265struct coordinate{ doubl

用c语言编写计算器源代码

For personal use only in study and research; not for commercial use腿作品:科学计算器 薅作者:欧宗龙袃编写环境:vc++6.0罿语言

矩阵计算C语言源代码

参螺奥雏设葱末爱垄棋岂荐罪迁沥压枪则究策笺挪翻私仕蜜埔业氛森稀炮震怨懂席蒸礼棘舔负例糯苔裤穗锁泳拂毫溉涤世宿础驭殃招窃插雕姨漫芒癌伺颐砷刁即钮漳熊挣酌誊乙嘎凄赤肄剩叫吠弹句柜珐韵薯弊臂骏帕都杆宪襟亏苯

杨辉三角的c语言源代码

#include<stdio.h> void fun(int a[][34],int n) { int i,j; for(i=0;i<n;i++) for(j=0;j<=i;j++) { if(i==

C语言圣诞树源代码

#include <stdio.h>void main(){ int i,j,k; for(i=1;i<=3;i++) { for(j=1;j<=7-i;j++) { printf("

C语言计算器源代码

C++语言编写。。#include<iostream>#include<cmath>#include<string>usingnamespacestd;constintSIZE=1000;typede

C语言课程表源代码

#include <stdio.h>#include <stdlib.h>#include <string.h>char course[10][7][10]; //用于存储课程表中的课程 void s

C语言成绩管理系统源代码

stdio.he<stdio.h>string.h <string.h>#define NULL 0#define LEN sizeof(struct student) struct date {