-
近期文章
近期评论
- 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
10-22
10-22
我收回来的是一个长的字符串“@00RD0001000200030004…0025*\r”,字符串间是一串4位的数据,从“0001”到“0025”共有25个数据,我现在是想把这个字符串里面的数据提取出来,从字符串的第5个开始,然后4个4个地提取,如第一个提取出来的是“0001”,第二个是“0002”直到第25个“0025”到*就结束。请教高手,有什么好的方法或建议?在下感激不尽!!!....
Read More >
请教
#include<stdio.h>#include<string.h>void main(){ char a[3]; int b[3]; int i,j,temp,tot=0; &nb....
Read More >
2008
10-21
10-21
前几天有个竞赛题,先求A^B约数的个数M,然后求1到M的立方和即1^3+2^3+……+M^3。1<A,B<1000000。如果按大数处理求约数十分麻烦,而且会超时(题目限定3S内出结果),求助有没有知道用什么算法做的,A^B的约数有多少个,是不是有特殊的求法?有知道的请给解解,谢谢。
顺便问下这里有参加ACM竞赛的朋友没?....
Read More >
2008
10-20
10-20
2008
10-19
10-19
2008
10-19
10-19
大家好,下面是利用VC调的程序,总是通不过,请大家帮忙指正错误,谢谢!
#include"stdio.h"void main(){int n;int s(n);int sum;printf("input number\n");scanf("%d",&n);sum=s(n);printf("sum=%d\n",sum);}int s(int m){int i;for(i=m-1;i>....
Read More >
2008
10-18
10-18
自学C不久,请问为什么我这段代码,在Main的菜单中。要是输入了非数字就会出现死循环呢?请问我该如何解决?
#include<stdio.h>#include<stdlib.h>#include<conio.h>#include<math.h>
main(){ int a ; &nbs....
Read More >
#include <stdio.h>#include <dos.h>main(){ float num1,num2,result; char operator; char answer='Y';&....
Read More >
#include "stdio.h"#include "conio.h"
main(){ float y=0.0,x=0,a[3][6]; int i,j; for(i=0;i<3;i++) for(j=0;j<6;j++) &nb....
Read More >
2008
10-17
10-17
我想编的程序是这样的:
Enter the gallons used(-1 to end):12.8
Enter the miles driven:287
The miles/gallon for this tank was 22.421875
Enter the gallons used(-1 to end):10.3
Enter the miles dri....
Read More >
++操作容易C:\135\1.cpp(194) : error C2105: '++' needs l-
value
的报错!#include <stdio.h>
void main()
{
char a[5]={'A','B','C','D','E'},*p=a,i;
for(i=0;i<5;i++)
printf("%c",*a++)....
Read More >
2008
10-17
10-17