-
近期文章
近期评论
- coolker 发表在《打造最快的Hash表》
- struggle 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- diys 发表在《C语言编程宝典(王大刚) 1.1 C 语言的产生与发展》
文章归档
- 2022 年十月
- 2014 年一月
- 2013 年十二月
- 2012 年十一月
- 2012 年七月
- 2012 年六月
- 2012 年五月
- 2012 年四月
- 2012 年三月
- 2012 年二月
- 2011 年十二月
- 2011 年十月
- 2011 年九月
- 2011 年八月
- 2011 年七月
- 2011 年六月
- 2011 年五月
- 2011 年四月
- 2011 年三月
- 2011 年二月
- 2011 年一月
- 2010 年十二月
- 2010 年十一月
- 2010 年十月
- 2010 年九月
- 2010 年八月
- 2010 年七月
- 2010 年六月
- 2010 年五月
- 2010 年四月
- 2010 年三月
- 2010 年二月
- 2010 年一月
- 2009 年十二月
- 2009 年十一月
- 2009 年十月
- 2009 年九月
- 2009 年八月
- 2009 年七月
- 2009 年六月
- 2009 年五月
- 2009 年四月
- 2009 年三月
- 2009 年二月
- 2009 年一月
- 2008 年十二月
- 2008 年十一月
- 2008 年十月
- 2008 年九月
- 2008 年八月
- 2008 年七月
- 2008 年六月
- 2008 年五月
- 2008 年四月
- 2008 年三月
- 2008 年二月
- 2008 年一月
- 2007 年十二月
- 2007 年十一月
- 2007 年十月
- 2007 年九月
- 2007 年八月
- 2007 年七月
- 2007 年六月
- 2007 年三月
- 2007 年二月
- 2007 年一月
- 2006 年十二月
- 2006 年十一月
- 2006 年十月
- 2006 年九月
- 2006 年八月
- 2006 年七月
- 2006 年六月
- 2006 年五月
- 2006 年四月
- 2006 年三月
- 2006 年二月
- 2006 年一月
- 2005 年十二月
- 2005 年十一月
分类目录
功能
2007
09-23
09-23
我写了个程序想把二进制的数变八进制,但不知道那里错了,可以运行但没法输出。。。。。。。。
/* Note:Your choice is C IDE */#include "stdio.h"
void main() //将一个二进制数变成八进制//{int a,m,j;int *s,*top,*base;
void push(int *p,int x); //进栈函数/....
Read More >
2007
09-22
09-22
2007
09-22
09-22
图解安装OpenBSD操作系统
上传限制太大了,所以另外找了几个地方上传。大家自行下载吧。zip包,解开后是excel文档,里面贴了大概有90多张图片。
有错误和疑问可以在这里跟帖。^_^
下载地点1:http://www.isload.com.cn/store/6y6cuzr7pq0eo/%CD%BC%BD%E2%B0%B2%D7%B0OpenBSD%B2%D9%D7%F7%CF%B5%C....
Read More >
2007
09-21
09-21
今天复习C语言的时候遇到了个问题,请大家帮忙解决下,菜鸟我谢谢各位了.
...
char *p="computer";
printf("%s\n",p);
...
int i,*p=&i;
......
printf("%d",*p);
我的问题就是:为什么在输出char型时候printf后面的指针用p,而在输出int型时却用*p?
不是都应该用*p吗?....
Read More >
2007
09-20
09-20
#include <process.h>#include <dos.h>#include <conio.h>#define Key_DOWN 336#define Key_UP 328#define Key_ESC 27#define Key_ALT_F 276#define Key_ALT_X 301#define Key_ENTER 13void box(i....
Read More >
2007
09-20
09-20
#include<stdio.h>typedef struct grade{ float score; float absolutevalue; int num;}Pingwei;int main(){ int i,j,k; float temp,sum;....
Read More >
(1)在歌手大奖赛中,有10个评委参加打分,分数为1-100。选手得分为:去掉一个最高分,去掉一个最低分后求其余8个分数的平均分。编一个程序实现。(2)同时对评委评分进行裁判,即在10个评委中找出最公平的(即评分最接近平均分的)和最不公平的(即与平均分相差最大的)评委....
Read More >
2007
09-17
09-17
#include<stdio.h>main(){int year,month,day,sum,leap;printf("\nplease input year month day\n");scanf("%d,%d,0%d\n",&year,&month,&day);switch(month){case 1:sum=0;break;case 2:sum=31;br....
Read More >
2007
09-16
09-16
#include"stdio.h"main(){int x=1,y=0,a=0,b=0;switch(x){case 1: switch(y) {case 0: a++;break;case 1: b++;break; }case 2: a++;b++;break;}printf("a=%d....
Read More >
2007
09-13
09-13
看了一个关于男朋友值多少钱的小文章,把里面的数字列出来想编成小程序来算这个价钱,可遇到一个很让我想不通的问题。
#include<stdio.h>int main(){ int basevalue=1000; &nbs....
Read More >
2007
09-10
09-10
#include <graphics.h>#include <stdio.h>#include <dos.h>#include <conio.h>#include <time.h>#include <math.h>#include <stdlib.h>void draw_block(int x,int y,int ....
Read More >
2007
09-06
09-06