代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/417725/10979194
cs dxfpoint.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SunDXFDll
{
public class DXFPoint:ICloneable
{
// Fields
public floa
www.eeworm.com/read/417725/10979198
cs dxfdata.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace SunDXFDll
{
public class DXFData : ICloneable
{
//
www.eeworm.com/read/271600/10988181
cs xfb.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Entity
{
public class Xfb
{
string _zdh;
string _tableid;
string _matname;
www.eeworm.com/read/271600/10988204
cs consume.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Entity
{
public class Consume
{
string _zdh;
string _tableid;
int _roomid;
www.eeworm.com/read/271600/10988210
cs jz_form.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
www.eeworm.com/read/417462/10988673
c show_2d.c
#include
void main(void)
{
int row, column;
float table[3][5] = {{1.0, 2.0, 3.0, 4.0, 5.0},
{6.0, 7.0, 8.0, 9.0, 10.0},
{11.0
www.eeworm.com/read/417462/10988679
c show_3d.c
#include
void main(void)
{
int row, column, table;
float values[2][3][5] = {
{{1.0, 2.0, 3.0, 4.0, 5.0},
{6.0, 7.0,
www.eeworm.com/read/417462/10988704
c huge_flt.c
#include
#include
void main (void)
{
int i;
float huge *values;
if ((values = (float huge *) halloc (17000,
sizeof(float))) == NULL)
printf
www.eeworm.com/read/417462/10988872
c for_more.c
#include
void main ()
{
char letter;
float percent;
for (letter = 'A'; letter = 'a'; letter--)
www.eeworm.com/read/417462/10988907
c sizeof.c
#include
void main ()
{
printf("Variables of type int use %d bytes\n", sizeof(int));
printf("Variables of type float use %d bytes\n", sizeof(float));
printf("Variables of ty