代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/442982/7640586
c munwrap.c
#include
#include
#include
#include "msp.h"
void munwrap(float phase[],int n)
{
/*----------------------------------------------------------------------
Routine
www.eeworm.com/read/442726/7645846
cs d3dfont.cs
//-----------------------------------------------------------------------------
// File: D3DFont.cs
//
// Desc: Shortcut functions for using DX objects
//
// Copyright (c) Microsoft Corporation.
www.eeworm.com/read/442718/7645942
java rulenode.java
/* -------------------------------------------------------------------------- */
/* */
/* ASSOCIATION RU
www.eeworm.com/read/442297/7655988
java student.java
public class Student {
private String rollNo;
private String name;
private float Cgpa;
public String getRollNo() {
return this.rollNo;
}
public void setRollNo(String
www.eeworm.com/read/441978/7661763
java distancematrix.java
/*
Copyright (C) 2004 Julia Handl
Email: Julia.Handl@gmx.de
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Li
www.eeworm.com/read/441912/7663180
txt gaosixiaoqufa.txt
//高斯消去法
#include
#include
int lines; //矩阵的维数
float **matra; //数组首地址,存放增广矩阵
float *solution; //存放方程组的解
void linequ(int lns); //构造函数,形参为维数,动态分配matra的存储空间
www.eeworm.com/read/441668/7667314
cpp p33temp().cpp
#include
void example ( float** x, const int m, int n )
{
float *sum ;
for ( int i=0; i
www.eeworm.com/read/441668/7667346
cpp p50_52test.cpp
const int MaxTerms = 100;
class Polynomial; //多项式类的前视声明
class term { //多项式中项的类定义
friend Polynomial; //定义Polynomial类为term类的友元类
private:
float coef; //系数
int exp;
www.eeworm.com/read/441668/7667355
cpp p25.cpp
int SeqSearch ( int a[], const int n, const int x ) {
int i = 0;
while ( i < n && a[i] != x ) i++;
if ( i == n ) return -1;
return i;
}
#include
#include
www.eeworm.com/read/441315/7672026
java product.java
package org.basket;
public class Product
{ private String id;
private String name;
private float price;
public Product(String id,String name,float price){
this.id=id;
this.name=nam