-
近期文章
近期评论
- 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
06-06
06-06
#include<stdio.h>void main(){printf("加法运算\n");int a,b,c;scanf("%d,%d\n",&a,&b);
c=a+b;printf("a+b和为%d\n",c);}
这样的程序对吗?
可运行出现了问题,取a,b的地址出现了问题
....
Read More >
#include <string.h>#include <conio.h>#include <math.h>#include <stdio.h>void fun2(char a[],char b[],char c[]){/**/
/**/}void main(){ char str1[15]="Fuz....
Read More >
#include <stdio.h>#include <math.h>double f(float x){ /**/ double y; if(x<=0) y=(x+2)*exp(x); else y=(x+2)*log(2*x);
/**/}
void main(){ ....
Read More >
#include <stdio.h>main(){ /**/ char /**/ str[20]; int i; float x; printf("Please input a string:\n"); scanf("%....
Read More >
#include <stdio.h>#include <math.h>void fun(double a[],double x,int n){ /**/
/**/}
main(){ int n; double a[2],x; printf("\nPlease enter x,n....
Read More >
2008
06-06
06-06
求助!C语言编程,有谢!!!
我有一个算法,需用C语言编程实现,哪位有兴趣请联系我。我将算法发给您!QQ:85675246E-mail:asa87053236@yahoo.com.cn如果成功,我有谢礼!!!....
Read More >
2008
06-05
06-05
/* Note:Your choice is C IDE */#include "stdio.h"main(){int intval,charval;scanf("%d",&intval);charval=getchar();printf("integer: %d\ncharacter: %c\n",intval,charval);}....
Read More >
2008
06-04
06-04
用栈来设置密码
要求:用栈来做一个密码验证程序,密码验证只有三次机会。要求:
设计要求与设计报告
1、模块化程序设计
2、锯齿型书写格式 3、必须上机调试通过
设计报告格式:(用ppt或者word形式体现)
1、设计目的
2、总体设计(程序设计组成框图、流程图)
....
Read More >