代码搜索:Disc

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

代码结果 1,656
www.eeworm.com/read/216646/15000334

cpp c13-1.cpp

#include #include using namespace std; int main() {float a,b,c,disc; couta>>b>>c; if (a==0) cerr
www.eeworm.com/read/114591/15046843

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/114591/15046893

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);
www.eeworm.com/read/213373/15136098

cpp c13-1.cpp

#include #include using namespace std; int main() {float a,b,c,disc; couta>>b>>c; if (a==0) cerr
www.eeworm.com/read/209853/15212978

cpp speciallist.cpp

//: C06:SpecialList.cpp // From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison. // (c) 1995-2004 MindView, Inc. All Rights Reserved. // See source code use permissions stated in the fi
www.eeworm.com/read/162614/5525408

ada c37207a.ada

-- C37207A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5525712

a c3a1001.a

-- C3A1001.A -- -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/160528/5570020

txt load.txt

connect -c uja -y erase write -b 1 -f out.ihx -intel -ver write -b 2 -f protect_word.bin -binary -a FE -ver disc
www.eeworm.com/read/174065/6783368

c ch4_17.c

/*ch4_17*/ /*求方程ax2+bx+c=0的实数根。a,b,c由键盘输入(a≠ 0且b2-4ac>0)*/ #include #include "math.h" /*包含math.h头文件,为使用求平方根函数sqrt()*/ main() { float a,b,c,disc,x1,x2; printf("Input
www.eeworm.com/read/174065/6783373

c ch5_6.c

/*ch5_6*/ /*求一元二次方程ax2+bx+c=0的解(a≠ 0)*/ #include #include "math.h" main() { float a,b,c,disc,x1,x2,p,q; scanf("%f,%f,%f", &a, &b, &c); disc=b*b-4*a*c; if (fabs(dis