代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/166734/5473112
1bk paranoia.1bk
Lest this program stop prematurely, i.e. before displaying
`END OF TEST',
try to persuade the computer NOT to terminate execution when an
error like Over/Underflow or Division by Zero occur
www.eeworm.com/read/166734/5473204
1bk paranoia.1bk
Lest this program stop prematurely, i.e. before displaying
`END OF TEST',
try to persuade the computer NOT to terminate execution when an
error like Over/Underflow or Division by Zero occur
www.eeworm.com/read/344727/3204685
js convertcurrency.js
function convertCurrency(currencyDigits) {
// Constants:
var MAXIMUM_NUMBER = 99999999999.99;
// Predefine the radix characters and currency symbols for output:
var CN_ZERO = "零";
var CN_ONE
www.eeworm.com/read/338546/3315191
input
int i = 0;
/** @author foo {{z=3; q=4;}} {yy=33;}*/
method foo() {
int j = i;
i = 4;
}
/** @author bar
*/
method zero() {
return 0;
}
www.eeworm.com/read/334226/3370629
m s-4.m
prefer_zero_one_indexing = 0;
prefer_column_vectors = 0;
do_fortran_indexing = 0;
a = 2;
all (a([1,1]) == [2,2])
www.eeworm.com/read/334226/3370854
m s-4.m
prefer_zero_one_indexing = 0;
prefer_column_vectors = 0;
do_fortran_indexing = 1;
a = 2;
all (a([1,1]) == [2,2])
www.eeworm.com/read/334226/3370899
m s-4.m
prefer_zero_one_indexing = 1;
prefer_column_vectors = 0;
do_fortran_indexing = 1;
a = 2;
all (a([1,1]) == [2,2])
www.eeworm.com/read/334226/3370944
m s-4.m
prefer_zero_one_indexing = 1;
prefer_column_vectors = 0;
do_fortran_indexing = 0;
a = 2;
all (a([1,1]) == [2,2])
www.eeworm.com/read/323310/3517747
cpp readreg.cpp
// This code shows how to read the registry
// However it is not used by the current Wdm1 code
void ReadReg( IN PUNICODE_STRING DriverRegistryPath)
{
// Make zero terminated copy of driver regi
www.eeworm.com/read/322590/3523065
java conntest22.java
//Create connection, setAutocommit(false) , create Statement, insert 10 tuples, close the connection.
//Open another connection and check the number of tuples. It should be Zero.
//Author: XieLiang