代码搜索:zero

找到约 10,000 项符合「zero」的源代码

代码结果 10,000
www.eeworm.com/read/187272/8837172

cpp main.cpp

/* * main.cpp */ #include #include "stdlib.h" #include "stdio.h" #include "math.h" #define ZERO39 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
www.eeworm.com/read/384592/8857268

c ex2-1.c

#include int main() { static float f[] = { -2.0, -1.0, -0.75, -0.5, 0.0, 0.5, 0.75, 1.0, 2.0 } ; int i, j ; for (i = 8; i >= 0; i--) { void *p = &f[i] ; lon
www.eeworm.com/read/383930/8910615

txt 人民币小写转化为大写.txt

/** * 人民币转成大写 * * @param value * @return String */ public static String hangeToBig(double value) { char[] hunit = { '拾', '佰', '仟' }; // 段内位置表示
www.eeworm.com/read/383332/8954493

cpp main.cpp

#include struct Snode { int key; //校验码,检查当前节点是否目标结点 int map[9]; //节点中数码的排列 int g; //节点的搜索深度 int f; //节点的启发函数值 int last; //父节点的key值 public: Snode(){ key = 0; } void
www.eeworm.com/read/283953/8976477

java trynestdemo.java

public class TryNestDemo{ public static void main(String []args){ int n=0; try{ try{ n=24/n; //产生ArithmeticException异常 }catch(NumberFormatEx
www.eeworm.com/read/283498/9015781

asm peeklast.asm

; Need to include "lists.a" in order to get list structure definition. include lists.a wp equ ;I'm a lazy typist ; Special case to handle MASM 6.0 vs. all other assembler
www.eeworm.com/read/283498/9015901

asm peekcur.asm

; Need to include "lists.a" in order to get list structure definition. include lists.a wp equ ;I'm a lazy typist ; Special case to handle MASM 6.0 vs. all other assembler
www.eeworm.com/read/381628/9081106

psh shadowmap.psh

ps.1.1 ;Set the bias for the conditional instruction. The instruction ;compares against 0.5. def c0, 0.495, 0.495, 0.495, 0.495 ;If the conditional test passes we want full brightness def c1,
www.eeworm.com/read/184729/9082270

cpp speedcollect.cpp

// SpeedCollect.cpp : implementation file // #include "stdafx.h" #include "CSpeed.h" #include "SpeedCollect.h" #include "public.h" #include "CSpeedSet.h" #ifdef _DEBUG #define new DEBUG_NE
www.eeworm.com/read/184553/9094460

java trynestdemo.java

public class TryNestDemo{ public static void main(String []args){ int n=0; try{ try{ n=24/n; //产生ArithmeticException异常 }catch(NumberFormatEx