代码搜索:Disc
找到约 1,656 项符合「Disc」的源代码
代码结果 1,656
www.eeworm.com/read/145379/12731965
htm leftbeh-1.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/142793/12918302
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/329487/12953092
c 11.c
#include "math.h"
void main()
{float a,b,c,disc,x1,x2;
printf("%s","input a,,b,c:");
scanf("%f,%f,%f",&a,&b,&c);
disc=b*b-4*a*c;
x1=(-b+sqrt(disc))/(2*a);
x2=(-b-sqrt(disc))/(2*a);
printf("\nx
www.eeworm.com/read/140545/13076471
cpp speciallist.cpp
//: C06:SpecialList.cpp
// Using the second version of transform()
#include
#include
#include
#include
#include "Inventory.h"
#include "PrintSequence.h"