汇编网首页登录博客注册
sinawear的学习博客
博客首页博客互动【做检测题】论坛求助

我的博客

个人首页 |  我的文章 |  我的相册 |  我的好友 |  最新访客 |  文章收藏 |  论坛提问 |  友情链接 |  给我留言  
图片载入中
  •  在三维世界里,人们所有的追求都在做钟摆运动,向前发展的只有科技和时间。
  • 『姓名』:
  • 『性别』:男『发送消息
  • 个人说明:
  • 详细信息『加为好友』
学习动态
好友圈
友情链接

[2010-04-07 07:44] 恐怖的地方,

http://yzfy.org/dis/listpost.php?tid=980&extra=page%3D1&page=1

在最后一次努力之后的早上,我就开始头疼了,恶心,随后,我居然吐了.
我努力后无果的代码.希望有人能告诉我哪不行?
;-------------------------------------
#include <iostream>
using namespace std;
void rolling(char*,char*,char*);

static char str[100001];   
static char str1[200001];
...
阅读全文 | 评论次数(1) | 浏览次数(1616) | 所属类型(the C.)

[2009-12-23 21:28] hzk24

点击查看原图
#include <stdio.h>
#include <dos.h>
#include <graphics.h>
#include <io.h>
FILE* open_hzk();
void display_hzk(int x0,int y0,int color,char* string,FILE* handleHzk);
void get_hzk(char* string,char* buffer,FILE* handleHzk);
main()
{
        FILE* handleHzk;
        int x=100,y=100; /* 640*480 x是列 y是行*/
        c...
阅读全文 | 评论次数(0) | 浏览次数(516) | 所属类型(the C.)

[2009-12-23 21:27] hzk16

点击查看原图
#include <stdio.h>
#include <dos.h>
#include <graphics.h>
#include <io.h>
FILE* open_hzk();
void display_hzk(int x0,int y0,int color,char* string,FILE* handleHzk);
void get_hzk(char* string,char* buffer,FILE* handleHzk);
main()
{
        FILE* handleHzk;
        int x=100,y=100; /* 640*480 x是列 y是行*/
        c...
阅读全文 | 评论次数(0) | 浏览次数(487) | 所属类型(the C.)

[2009-12-19 15:19] 真是让人沮丧。

printf函数的实现,以前我都写到那种成度了..
自己思维被禁锢的厉害,思考力总是达不到,,
往往妄想一步,可是自己不是神仙..
总是欲速不达,,
而后信心没了,真讨厌.....
对于计算十分没信心,,
只能借它物了.
毫无逻辑上的创造力.
这真让人沮丧.
;====================================
看了程序训练营的专用课程,的Printf.
看到+6,%.我气愤了.
;====================================

/*实现printf的输出.*/
void myPrintf(char point[]...
阅读全文 | 评论次数(2) | 浏览次数(680) | 所属类型(the C.)

[2009-09-29 22:11] 单向链表。

//目标动态单向链表的建立,添加,删除.
//不够简炼呢。
#define NULL 0
#include <stdio.h>
#include <malloc.h>
#include <string.h>
struct student
{
        int num;
        char name[10];
        struct student *next;
};
        struct student *creat(void);       //建立函数声明.
        struct student *del(struct student*);
        struct student *add(struct ...
阅读全文 | 评论次数(0) | 浏览次数(442) | 所属类型(the C.)
页码数(1):  1