-
近期文章
近期评论
- 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 年十一月
分类目录
功能
月归档:2008 年八月
2008
08-20
08-20
我们老师要我们用C语言完成如下功能.
假如输入一个数是5
得出以下结论
5*1=5 5*2=10
5*3=15 5*4=20直到5*10=50.
那假如我输入以个数是7
那就是得出以下结果
7*1=7 7*2=14
7*3=21 7*4=28
直到7*10=70.
那么我代码已经写完了,但是觉得很复杂,也不直到有没有写错,....
Read More >
求1—100间素数,为什么我这样写就求不出来呢,哪位大侠能给解释下。。谢谢~~
#include<stdio.h>void main(){ int a[101],i,j; for(i=1;i<101;i++) { a[i]=1; } for(i=1;i<=100;i++) { &n....
Read More >
2008
08-20
08-20
2008
08-20
08-20
原文:http://www.thefreecountry.com/compilers/cpp.shtmlFree C, C++ Compilers and Interpreters for Computers
Free Microsoft Visual C++ 2008 Express
Microsoft Visual C++ 2008 Express is currently av....
Read More >
下面的数据结构的程序老是报错,每个函数都报同一个错:
error C2143: syntax error : missing ')' before '&'
error C2143: syntax error : missing '{' before '&'
#include<stdio.h>#define null 0#define ok ....
Read More >
#include int a=1; int f(int c) { static int a=2; c=c+1; return (a++)+c; } main() { int i,k=0; for(i=0;i<2;i++) { int a=3;k+=f(a); } k+=a; printf....
Read More >
2008
08-18
08-18
在MP3播放器里有5个音乐播放入口,要求:每个入口进入的音乐类型不同(比如第一个进入后是播放英语歌曲,第二个进入后是播放韩语歌曲,第三个是中文歌曲...等等有5类) 高手帮忙解决下啊,急啊!....
Read More >
#include<stdio.h> void fun(int x) { if(x/2>0) fun(x/2); printf(“%d ”,x); } main() { fun(3); &n....
Read More >
2008
08-17
08-17
#include "stdio.h" #include "math.h" main() { float y; int x,n; y=1; while(y>=-1) { n=acos(y)*10; for(x=0;x<n;x++) printf(" "); printf("*"); for(;x<62-n;x++) printf(" "); printf("*%d %lf\n",n....
Read More >
我是c语言初学者,为什么下面的结果是a=10,b=20;而不是a=20,b=10;
#include <stdio.h>void SWAP(int x,int y);void swap(int *x,int *y);void main(){ int a=10,b=20; SWAP(a,b); printf("%d,%d\n",a,b....
Read More >
void fun(char *a,char *b) {while(*a==‘*’) a++; while(*b=*a) {b++;a++;} } main() { char *s=”****a*b****”,t[80]....
Read More >
2008
08-16
08-16
我写了一个输入三个数,按从大到小输出,程序如下。但执行时输入1,2,3能够正常输出3 2 1。但是如果输入较大数或者有负数就不正常了!请高手赐教!我用的环境是vc++6.0
#include <stdio.h>
void main()
{
int a,b,c,t;
scanf("%d%d%d",&a,&b,&c);
if(a<b)
{
t=....
Read More >
2008
08-15
08-15
这两个周在忙着搞C语言的图形库编程。由于Turbo C自带的图形库graphics功能不多,只支持16色,所以从网上下了一个第三方图形库——svgacc。
svgacc图形库针对VGA显示器(目前市场上大部分显示器都是VGA显示器),支持256色显示,函数众多,功能强大,甚至可以进行一些简单的三维制作。
使用时要将头文件svgacc.h复制到TC的Include目录中,其他的文件全部复制到TC....
Read More >
2008
08-15
08-15
2008
08-14
08-14