-
近期文章
近期评论
- 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 年四月
2009
04-30
04-30
#include <stdio.h>#include <assert.h>int find_string(char strings[4][20],const char *src){ /*对一个字符串的定位,第2个字符串那么就得到1*/char a; const char *str=&a; const char *d=NULL; ....
Read More >
2009
04-30
04-30
学C时遇到一个问题. 调试书上一个程序的时候,输出老是显示858993460.程序如下:
求一个数的绝对值:
#include<stdio.h>
main(){int x;
printf("input x\n");scanf("d%",&x);if(x<0) x=-x;printf("%d\n",x);}
而另外一个求三数中最大值时,同样没有赋初值,为什么又能正....
Read More >
#include"stdio.h"#include"string.h"void main(){ char str[100],c; int num=0,i=0; gets(str); do { while((c=str[i])==' ')i++; if(c!='\0')num++; while((c=str[i])....
Read More >
2009
04-29
04-29
2009
04-26
04-26
用vc6.0总是报错。
#include<iostream>
using std::cout;using std::cin;using std::endl;
int main(){ int total, //sum....
Read More >
2009
04-24
04-24
2009
04-24
04-24
2009
04-23
04-23
#include ” stdio.h ”
main()
{ int c;
while((c=getchar())!= ’ \n ’ )
{ switch(c- ' 2 ' )
{ case 0:
 ....
Read More >
2009
04-22
04-22
main()
{int n,a[80],b[80],i,j;
scanf("%d",&n);
for(i=0;i<n;i++) scanf("%d,%d",&a[i],&b[i]);
for(i=1;i<n;i++)
for(j=0;j<n-i;j++) if(a[j]<a[j+1]) {a....
Read More >
2009
04-22
04-22
mail:Athena@hrbank.net.cn[/email] [email=cheonmyonghun@msn.com]cheonmyonghun@msn.com qq:55807292(请注明求职谢谢 )
适和senior的技术型专家的职位,不适合要做纯管理的或者PM的高级人才,不是对技术非常感兴趣,对研发有兴....
Read More >
2009
04-21
04-21
下面是我写的一个程序,目的是从键盘输入学生的名字(name)和分数(score)
然后输出。
例:
input
zhang san
89
li si
96
over
output
The score of zhang san is 89
The score of li si is 96
但是,程序运行之后,却输出了四行。急待解决!
#include....
Read More >