代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/456187/7355255
java exercise6_12.java
import javax.swing.*;
public class Exercise6_12 {
public static void main(String[] args) {
StackOfIntegers stack = new StackOfIntegers(2);
// Prompt the user to enter an integer
www.eeworm.com/read/455115/7377740
m clouds.m
% CLOUDS
%
% Function to create a movie of noise images having 1/f amplitude spectum properties
%
% Usage: clouds(size, factor, meandev, stddev, lowvel, velfactor, nframes)
%
% size - size of
www.eeworm.com/read/453291/7422857
cpp cityview.cpp
#include
#include
#include "cityview.h"
CityView::CityView(QWidget *parent)
: QGraphicsView(parent)
{
setDragMode(ScrollHandDrag);
}
void CityView::wheelEvent(QWheelEvent *e
www.eeworm.com/read/452050/7451066
java 3341003_ac_188ms_2100k.java
import java.util.*;
public class Main
{
/**
* @param args
*/
public static void main(String[] args)
{
new Main().run();
}
class Expression
{
int c0, c1;
}
Stri
www.eeworm.com/read/451351/7466868
java ex3_21.java
//3.21(求整数的因子)
import javax.swing.JOptionPane;
public class Ex3_21{
public static void main (String[] args) {
int number,factor=2;
number=Integer.parseInt(JOptionPane.showInputDialog
www.eeworm.com/read/450642/7479392
cs basetransform.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace SimpleCryptographer.AES
{
class BaseTransform
{
#region Transform a text to a hex
public
www.eeworm.com/read/449530/7501247
c hotel.c
/* hotel.c -- hotel management functions */
#include
#include "hotel.h"
int menu(void)
{
int code, status;
printf("\n%s%s\n", STARS, STARS);
printf("Enter the number of
www.eeworm.com/read/448535/7531328
m logistic.m
function y = logistic(x,lambda)
%
% Compute the logistic function y = lambda*x*(1-x)
%
% function y = logistic(x,lambda)
%
% x = input value (may be a vector)
% lambda = factor of the function
www.eeworm.com/read/447342/7554279
c parser.c
#include "global.h"
#include "lexer.c"
int lookahead;
void parse()
{
lookahead =lexan();
while(lookahead!=DONE){
expr();match(';');
}
}
void expr()
{
int t;
term();
while
www.eeworm.com/read/446393/7580491
c 欧几里德.c
#include
void main()
{
int temp;
int a,b;
scanf("%d",&a);
scanf("%d",&b);
printf("the greatest common factor of %d and %d is ",a,b);
while(b!=0)
{
temp=b;
b=a%b;
a