-
近期文章
近期评论
- 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 年十一月
分类目录
功能
分类目录归档:编程问题提问区
2009
04-07
04-07
#include<stdio.h>void main(){int a,b,c,d,t;scanf("%d,%d,%d,%d,%d",&a,&b,&c,&d,&t);if(a>b)t=a;a=b;b=t;elseprintf("%d,%d",a....
Read More >
#include <stdio.h>int main(void){ int i=8; printf("%d %d %d\n",++i,--i,i++); return 0;}用gcc编译的时候报以下错误是怎么回事?Example5.c: In function `main':Ex....
Read More >
2009
04-04
04-04
我用的C不是C#。 我现在写一个求500以内素数的程序,我写的事这样: #include <stdio.h> #include <math.h> main() { int i,j,k,n=0; for(i=2;i <=500;i++) k=sqrt(i); {for(j=2;j <k;j++) if(i%j==0) break; if(j>=k) {pri....
Read More >
2009
04-03
04-03
在两个整数相除的运算中,C语言定义的取整运算既不是Floor也不是Ceiling,无论操作数是正是负总是把小数部分截断(Truncate),所以当操作数为正的时候相当于Floor,当操作符为负的时候相当于Ceiling。 麻烦大家解释下所以后面的内容.并举个例,谢谢.......
Read More >
2009
04-02
04-02
认真看书之后,按照书上编了一个程序
#include <stdio.h>
main()
{
int c;
while ((c = getchar()) != EOF)
putchar (c);
}
运行程序后就一个黑框框,....
Read More >
2009
04-01
04-01
今天我编写了一个程序!本来想试试用以下程序看看DOC文件里面到底装的什么东西!但是好象行不通呢?请问这样的程序怎么回试不通呢?
#include<iostream.h>#include<stdio.h>void main(){ char *c; int i; FILE *fp; fp=fopen("d:\123.doc","rb")....
Read More >
2009
04-01
04-01
第一次发贴,贴个读行函数,高手提点意见#include <stdio.h>#include <conio.h>#include <stdio.h>#define maxnum 11char * getline(char *const str,const int size){ /*获得一行数据,最多接受maxnum个,多了则去掉,也就避免了缓冲区溢出,并....
Read More >
2009
04-01
04-01
#include<stdio.h>int Difference(int a, int b,int c);
/*function main begins*/int main(void){ int x,y,z;
printf("enter the hour :\n"); scanf("%d",&x);
printf("e....
Read More >
2009
03-31
03-31
#include<stdio.h>int imin(int,int);int main(){ int evil1,evil2;
printf("enter a pair of integer(q to quit):\n"); while(scanf("%d %d",&evil1,&evil2)==2) { &....
Read More >
#include <stdio.h>
void main()
{
int i;
unsigned int j;
i=~0;
j=~0;
printf("i=%d,j=%d",i,j);
}
为什么i=-1,j=-1?
(-1怎么来的?)....
Read More >
2009
03-31
03-31
程序如下(我特意编了一个最基础的程序……)
#include <stdio.h>
main()
{
printf ("hello,nihao");
}
然后F9,显示的是"成功",但是ctr+f5,什么也看不到,就一个光标……
-------------------------------------------------------------------------....
Read More >