
作品
怀逸同学
计算机在读研究生
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
学生信息管理系统源代码-C语言
#include<stdio.h> #include<conio.h> #include<stdlib.h> #include<string.h> struct stu_type{ char num[15]; char name[10]; int age; int c; int math; int en; int sum; f...原创 2019-04-06 16:14:25 · 40943 阅读 · 4 评论 -
c语言编写双人弹跳小球游戏
/* 日期:2019年3月2日 项目:双人弹跳球游戏 */ #include<stdio.h> #define MAX 100 #include<windows.h> #include<conio.h> int width, high; //游戏边界 int player1_x, player1_y, player2_x, player2_y; /...原创 2019-03-02 20:06:24 · 2260 阅读 · 1 评论