当前位置: 代码迷 >> DONE的解决方案
 
  • libdrm for android done

    libdrmforandroiddone!libdrmforandroiddone!

    5
    热度
  • DONE打印日历

    DONE打印日历 /*打印日历要求格式如下:JanuaryFebruarySunMonTueWedThuFriSatSunMonTueWedThuFriSat123123456745678910891011121314111213141516171516171819202118192021222324222324252627282526272829303129*/#in...

    224
    热度
  • DONE约瑟夫问题

    DONE约瑟夫问题 //约瑟夫问题,结果为什么异常?//输入422//422//1Thelastdot24Thelastdot22Thelastdot3Pressanykeytocon//tinue#include<stdio.h>#include<malloc.h>typedefstructnode{intdata;structnode*lin...

    305
    热度
  • DONE删除空白字符

    DONE删除空白字符 #include<stdio.h>//删除空白字符main(){inti,j;charc,a[80];i=0;while((c=getchar())!='#'){a[i]=c;i++;}a[i]='\0';for(j=0;j<i;j++){if(a[i]!=''&&a[i]!='\t'&&a[i]!...

    302
    热度
  • DONE新手学JSP!

    DONE新手学JSP! 我是新手,想学JSP,感觉这里仅是好人,能介绍一些方法,书籍,资料吗?谢谢~~ color=#000066>[此贴子已经被作者于2007-11-1715:41:22编辑过] 搜索更多相关主题的帖子: color="red">DONEcolor="red">JSP color='#FF8...

    316
    热度
  • DONE方法属于的类

    DONE方法属于的类 我再初学Java过程中,看到很多方法但不知道他属于的类,能给我一些帮助吗? color=#000066>[此贴子已经被作者于2007-10-314:46:30编辑过] 搜索更多相关的解决方案: DONE"target="_blank">color="red">DONE color='...

    356
    热度
  • DONE编程求解a,b,c;

    DONE编程求解a,b,c; cos(a)cos(c)sin(b)-sin(a)sin(c)-0.5=0cos(a)cos(b)-0.5=0cos(a)sin(b)sin(c)-sin(a)cos(c)-0.5=0编程求解a,b,c;谢谢~~ color=#000066>[此贴子已经被作者于2007-11-1810:35:37编辑过] 搜索更多相关的解...

    338
    热度
  • DONE从文件中读入整数

    DONE从文件中读入整数 //我想从in.txt中读入整数,while中的循环条件是什么?我不会,谢谢~~#include<stdio.h>main(){FILE*in;inta[100],i;i=0;in=fopen("in.txt","r");do{fscanf(in,"%d",&a[i]);i++;}while();printf("%d",i)...

    425
    热度
  • DONE throws后面究竟应该用什么?

    DONEthrows后面究竟应该用什么? packageexamWithinAWeek; publicclassTest{publicstaticvoidmain(Stringargs[])throwsInterruptedException{ //有些也可以用throwsIOException,throws后面究竟应该用什么?谢谢~~Strings="asdfdfwe...

    418
    热度
  • DONE为什么没有输出?

    DONE为什么没有输出? //为什么没有输出?#include<stdio.h>#include<malloc.h>typedefstructnode{intdata;structnode*link;}LNode,*LinkList; main(){LinkListp,r,list=NULL;inti,n,a; n=4;for(i=1;i<...

    470
    热度
  • DONE排除异常,有错?

    DONE排除异常,有错? packageexamWithinAWeek; publicclassException{publicstaticvoidmain(Stringargs[]){try{System.out.println(1/0);}catch(Exceptionex){System.out.println("Error!");}} }这个程序排除此异常9/0...

    381
    热度
  • DONE通过super访问父类成员

    DONE通过super访问父类成员 //通过super访问父类成员,为什么会出错?publicclassSuper{inta=1; publicclasssubclassextendsSuper{inta=6;intb=super.a;publicvoidmain(String[]args){inta=6;subclassp=newsubclass();System.o...

    409
    热度
  • DONE用了malloc必须加上#include?

    DONE用了malloc必须加上#include? #include<stdio.h>#include<alloc.h>//数据结构书上说用了malloc必须加上,可加上后有mistake,//为什么?谢谢~~typedefstructnode{intdata;structnode*link;}LNode,*Linklist; main(){Li...

    580
    热度
  • DONE删去a中的重复字符

    回复:(vbc)我的算法时间复杂度很高吗??????????虽说... 我觉得你的很好啊!很容易懂.但能告诉我strcat(a,&a[j]);是什么意思吗? color='#FF8000'>----------------解决方案-----------------------------------------------------...

    420
    热度
  • DONE删去a中的重复字符

    觉的VBC写的挺好的.如果改成这样应该更容易看一些.不知道改成这样可有什么不对的地方.#include<stdio.h>#include<string.h>voidmain(){chara[100];inti,j;printf("请输入一个字符串:");scanf("%s",a);for(i=0;i<strlen(a);i++){for(j=i+1;j<=str...

    217
    热度
  • DONE用了malloc必须加上#include?

    以下是引用夜火在2007-9-2019:40:53的发言: 大姐我在问alloc和malloc的区别没回答我的问题引我的做什么 旧和新的区别啊!现在不是又换成memory.h吗?不过有的为了和老代码保持兼容性,旧文件一样带上,并且提供一样的函数by雨中飞燕QQ:78803110QQ讨论群:5305909[url=http://bbs.bc-cn.net/viewthread.php?tid=163...

    340
    热度
  • DONE 这一步为什么不执行???

    DONE这一步为什么不执行??? packagejavaApplet;importjava.applet.*;importjava.awt.*;importjava.awt.geom.*; publicclassRotateextendsApplet{publicvoidpaint(Graphicsg){Graphics2Dg2d=(Graphics2D)g;//创建G...

    174
    热度
  • Done对应的包在网上找不到期

    Done对应的包在网上找不到期 importorg.hibernate.cfg.*; importorg.hibernate.*; 把错,我觉得应该是对应的包没有导入,但是,我在网上没有找到对应的包,有没有人能帮我? [[it]本帖最后由zzxwill于2008-6-713:30编辑[/it]] 搜索更多相关主题的帖子: color="red...

    138
    热度
  • 替心爱的MoinMoin写一个小小的Done

    为心爱的MoinMoin写一个小小的Done宏 ################################################### # #Author:willzh@javaeye #Date:WedApr1516:07:30CST2009 #GPLv3 # # importrandom defexecute(macro,args): html=''' <scrip...

    134
    热度
  • DONE大家为我解决时可能比较烦

    DONE大家为我解决时可能比较烦 这是一个简单登陆的程序,先执行login.jsp输入“abc”后点“确定”,没有转入ok。为什么?谢谢~~login.jsp<%@pagecontentType="text/html;charset=gb2312"language="java"errorPage=""%><html><head><...

    142
    热度
上一页12...105106下一页