代码搜索:Disc

找到约 1,656 项符合「Disc」的源代码

代码结果 1,656
www.eeworm.com/read/122257/14705650

htm leftbeh.htm

/* * Storing this varible on the navigator object makes it truely global on NN4, * but is no help on NN3, so we need the page global variable in NN3 which i
www.eeworm.com/read/122257/14706806

htm leftbeh.htm

/* * Storing this varible on the navigator object makes it truely global on NN4, * but is no help on NN3, so we need the page global variable in NN3 which i
www.eeworm.com/read/122239/14712134

c test_sfio.c

/* ** GNU Pth - The GNU Portable Threads ** Copyright (c) 1999-2004 Ralf S. Engelschall ** ** This file is part of GNU Pth, a non-preemptive thread scheduling ** library whic
www.eeworm.com/read/120923/14782829

cpp speciallist.cpp

//: C08:SpecialList.cpp // From "Thinking in C++, 2nd Edition, Volume 2" // by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc. // Available at www.BruceEckel.com. // Using the second version
www.eeworm.com/read/119253/14836018

jsp articleposthandler.jsp

JavaBBS
www.eeworm.com/read/119253/14836020

jsp boardlist.jsp

JavaBBS
www.eeworm.com/read/118495/14868172

html gettingstarted.html

Getting Started
www.eeworm.com/read/116425/14969867

c al4_6.c

/*案例代码文件名:AL4_6.C。*/ /*功能:求一元二次方程的解。*/ #include "math.h" main() { float a,b,c,disc,x1,x2,p,q; scanf("%f,%f,%f", &a, &b, &c); /*输入一元二次方程的系数a,b,c*/ disc=b*b-4*a*c; if (fabs(disc)
www.eeworm.com/read/116425/14969927

c al3_11.c

/*案例代码文件名:AL3_11.C。*/ /*功能:设计一个顺序结构程序,求方程的根。*/ #include "math.h" /*为使用求平方根函数sqrt(),包含math.h头文件 */ main() {float a,b,c,disc,x1,x2; printf("Input a, b, c: "); scanf("%f,%f,%f",&a,&b,&c);