代码搜索:Multiplication
找到约 1,176 项符合「Multiplication」的源代码
代码结果 1,176
www.eeworm.com/read/146392/5738504
java multiplication.java
/* Copyright (c) 2000-2004 jMock.org
*/
package org.jmock.examples.calculator.expression;
import org.jmock.examples.calculator.Expression;
public class Multiplication extends BinaryOperato
www.eeworm.com/read/478816/6703744
java multiplication.java
/*作者:徐朝*/
/*keystonexu@yahoo.com.cn*/
package regression.function;
import kernel.*;
//这是乘法的定义
public class Multiplication extends Function {
public Multiplication() {
SubItems = new Prog
www.eeworm.com/read/478816/6703750
class multiplication.class
www.eeworm.com/read/339483/12230834
sh multiplication.sh
#!/bin/bash
# multiplication.sh
multiply () # Multiplies params passed.
{ # Will accept a variable number of args.
local product=1
until [ -z "
www.eeworm.com/read/429836/1945298
java multiplication.java
package Jt.examples.patterns;
import Jt.*;
/**
* Calculator implementation based on Strategy. Refer to Calculator3.java
*/
public class Multiplication extends JtStrategy {
priv
www.eeworm.com/read/419522/10863569
cpp matrix_multiplication.cpp
#include
#include
#define MAX 21
int p[MAX],ptr;
int m[MAX][MAX];
int s[MAX][MAX];
void prnt(int i, int j)
{
if (i == j) {
printf("A%d",i);
return;
}
else if
www.eeworm.com/read/331922/12800372
txt polynomial multiplication.txt
#include
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
int a[100]={0},b[100]={0},c[100]={0};
int m,n,i,j;
scanf("%d",&m);
for( i=m;i>=0;i--)
scanf("%d",&a[i]);
scanf("%d",&n
www.eeworm.com/read/413300/11160067
h double_multiplication.h
void D_Swap(float *a,float *b) //交换float 类型
{
float t;
t=*a;
*a=*b;
*b=t;
}
void I_Swap(int*a,int*b) //交换INT类型
{
int t;
t=*a;
*a=*b;
*b=t;
}
int LinEq_GassColum(in
www.eeworm.com/read/291234/8433720
asm matrix_transposition_&_multiplication.asm
##############################
# Hong Zhang
# Computer Architecture Project
# MIPS
# Matrix Transposition & Multiplication
# Code
##############################
.data
my_info: .asciiz "Hong
www.eeworm.com/read/390109/8483042