代码搜索:Functions
找到约 10,000 项符合「Functions」的源代码
代码结果 10,000
www.eeworm.com/read/404226/11489798
curry functions.curry
int a;
int[] b;
int tester(int d) {
return (b[d] + d);
}
void main() {
int a;
int c;
a = 3;
b = NewArray(3, int);
c = a + b;
Print(tester(c));
}
www.eeworm.com/read/404226/11489801
out functions.out
Program:
1 VarDecl:
Type: int
1 Identifier: a
2 VarDecl:
2 ArrayType:
Type: int
2 Identifier: b
4 FnDecl:
(return type) Type: in
www.eeworm.com/read/402948/11526077
html functions.html
function changeImg(i,ImgIndex){
document.images[i].src=Images[ImgIndex].src;
}
www.eeworm.com/read/402294/11538943
h functions.h
/*
* Copyright (C) 1996-2000 Michael R. Elkins
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Licens
www.eeworm.com/read/401362/11558702
bas functions.bas
Attribute VB_Name = "functions"
'================================================================
'================================================================
'*** SMS Messeng
www.eeworm.com/read/401315/11559536
cs functions.cs
using System;
using System.Text;
using System.Web.Security;
namespace shop
{
///
/// functions
///
public class Functions
{
public Functions()
{
//
/
www.eeworm.com/read/400422/11577309
txt functions.txt
四阶龙格-库塔 rk4
欧拉公式 euler
梯形公式 ladder
Adams预估矫正法 adams
乘幂法 pm
反幂法 pm_opposite
拉格朗日 lagrange
prod
prod(x, 1) - 矩阵按列乘积
prod(x, 2) - 矩阵按行乘积
If X = [0 1 2
3