代码搜索:Exponents
找到约 159 项符合「Exponents」的源代码
代码结果 159
www.eeworm.com/read/373369/9460421
java exponents.java
//: operators/Exponents.java
// "e" means "10 to the power."
public class Exponents {
public static void main(String[] args) {
// Uppercase and lowercase 'e' are the same:
float expFl
www.eeworm.com/read/169058/9883126
java exponents.java
//: operators/Exponents.java
// "e" means "10 to the power."
public class Exponents {
public static void main(String[] args) {
// Uppercase and lowercase 'e' are the same:
float expFl
www.eeworm.com/read/332978/7141831
java exponents.java
//: operators/Exponents.java
// "e" means "10 to the power."
public class Exponents {
public static void main(String[] args) {
// Uppercase and lowercase 'e' are the same:
float expFl
www.eeworm.com/read/325023/13231023
java exponents.java
//: operators/Exponents.java
// "e" means "10 to the power."
public class Exponents {
public static void main(String[] args) {
// Uppercase and lowercase 'e' are the same:
float expFl
www.eeworm.com/read/347945/11623933
m exponents.m
function [ML,list] = exponents(poly,x)
%EXPONENTS Internal function to extract powers of nonlinear expression
% Author Johan L鰂berg
% $Id: exponents.m,v 1.4 2006/08/30 14:11:14 joloef Exp $
%
www.eeworm.com/read/347945/11625467
m exponents.m
function [ML,dummy] = exponents(poly,x)
%EXPONENTS Internal function to extract powers of nonlinear expression
% Author Johan L鰂berg
% $Id: exponents.m,v 1.3 2006/08/11 11:48:15 joloef Exp $
m
www.eeworm.com/read/344239/11895410
java exponents.java
//: operators/Exponents.java
// "e" means "10 to the power."
public class Exponents {
public static void main(String[] args) {
// Uppercase and lowercase 'e' are the same:
float expFl
www.eeworm.com/read/303463/3810323
m exponents.m
function [ML,list] = exponents(poly,x)
%EXPONENTS Internal function to extract powers of nonlinear expression
% Author Johan L鰂berg
% $Id: exponents.m,v 1.4 2006/08/30 14:11:14 joloef Exp $
%
www.eeworm.com/read/292758/3941506
txt exponents.txt
You entered 2 with an exponent of 42 raised to the 4 power is 16.
www.eeworm.com/read/292758/3941588
pl exponents.pl
#!/usr/bin/perl
require "subparseform.lib";
&Parse_Form;
$number = $formdata{'number'};
$power = $formdata{'power'};
$result = $number ** $power;
print "Content-type: text/html\n\n";
pr