代码搜索:cube
找到约 2,811 项符合「cube」的源代码
代码结果 2,811
www.eeworm.com/read/373097/9475275
java cube.java
package pjt;
public class Cube {
private double a=100;
private double theta=0, t;
double[] px, py, pz;
public void setA(double a) {
if(a>0)
this.a = a;
}
public void crea
www.eeworm.com/read/366144/9828728
off cube.off
OFF
8 6 12
-1 -1 -1
-1 -1 1
-1 1 -1
-1 1 1
1 -1 -1
1 -1 1
1 1 -1
1 1 1
4 0 1 3 2
4 0 4 5 1
4 0 2 6 4
4 4 6 7 5
4 2 3 7 6
4 1 5 7 3
www.eeworm.com/read/359581/10135384
c for_cube.c
/* for_cube.c -- using a for loop to make a table of cubes */
#include
int main(void)
{
int num;
printf(" n n cubed\n");
for (num = 1; num
www.eeworm.com/read/359376/10153011
dat cube.dat
x y z
1 1 10
1 2 10
1 3 10
1 4 10
1 5 10
1 6 10
1 7 10
1 8 10
1 9 10
1 10 10
1 11 1
www.eeworm.com/read/356874/10219917
c for_cube.c
/* for_cube.c -- using a for loop to make a table of cubes */
#include
int main(void)
{
int num;
printf(" n n cubed\n");
for (num = 1; num
www.eeworm.com/read/162269/10321428
cpp cube.cpp
/*=================================================================================
FILE: cube.cpp
DESCRIPTION: This file is provide as a standard sample Brew source file.
Please refer t
www.eeworm.com/read/354761/10326975
bmp cube.bmp
www.eeworm.com/read/161772/10376699
c cube.c
/* Demonstrates a simple function */
#include
long cube(long x);
long input, answer;
int main( void )
{
printf("Enter an integer value: ");
scanf("%d", &input);
answer
www.eeworm.com/read/161772/10376775
exe cube.exe
www.eeworm.com/read/161772/10376780
cpp cube.cpp
// A C++ program with square and cube classes
#include
// Simple square class
class square {
public:
square();
square(int);
int length;
long area();
int d