-
近期文章
近期评论
- 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
04-17
04-17
我是个刚学C的菜鸟,碰到了问题,向高手请教,谢谢!!!
刚刚早上编了个进行+-*/运算的程序,可是该怎么弄才能让我随便输入什么两个数也能进行计算呢?因为水平有限我只弄了整型的
#include <stdio.h>#include <stdlib.h>/*use switch statement to finishi it*/
int x....
Read More >
2008
04-17
04-17
2008
04-15
04-15
#include <stdio.h> #include <time.h> void main(){ struct tm *target_time; time_t rawtime, t; int year,month,mday,hh,mm,ss; time ( &rawtime ); target_time = localtime ( &rawtime ); ....
Read More >
2008
04-14
04-14
#include<stdio.h> #include<stdlib.h> #include<time.h>
#define N 35void Choose1();{ int a[N]={1,2,3,4,5,6, 7,8,9,10,11,12,13,14,15, 16,17,18,19,20,21,22,23, 24,25,26,27,....
Read More >
2008
04-14
04-14
#include <stdlib.h> #include <stdio.h> #include <time.h> #include <math.h>int THE_WIDE_I=20,THE_GRID_X=420;
int irand_num(int MAX){ int num;
num=int(MAX*rand()/(po....
Read More >
2008
04-14
04-14
请问这两种循环方式的功能是一样吗?
void calvalue()
{ int i,thou,hun,ten,data;
int ab;
long sum=0;
for(i=0;i<200;i++)
{ if(xx[i]>0)
&nbs....
Read More >
2008
04-14
04-14
2008
04-14
04-14
用户自定义一个用户名和密码 输入完后再出现个“*”号的倒三角 如图下
http://sz.photo.store.qq.com/rurl2=ebeb9f7a4dca374c7c5f463bf89112f343a18cd78636a010b7c8e4ceeec89341bbb6f6aa8453219bd0edde1b7f8616668dfc0fe036....
Read More >
给小学生出加法考试题
编写一个程序,给学生出加法运算题,然后判断学生输入的答案对错与否,可以按下列要求以循序渐进的方式编程。
程序1 通过输入两个加数给学生出一道加法运算题,如果输入答案正确,则显示“Right!”,否则显示“Not correct! Try again!”,程序结束。....
Read More >