代码搜索:Calculating
找到约 1,772 项符合「Calculating」的源代码
代码结果 1,772
www.eeworm.com/read/493718/6389293
pas ac1053.pas
{In fact it's just calculating the GCD of the given numbers}
program ural1053;
var
n,i:integer;
a,b:longint;
function gcd(a,b:longint):longint;
var
t:longint;
begin
if a
www.eeworm.com/read/487272/6517669
for fixed.for
C-----CALCULATING 99
INTEGER i, j
DO 100 i=1, 9
DO 100 j=1, 9
PRINT *, i, j, i*j
100 CONTINUE
END
www.eeworm.com/read/407616/11413507
for fixed.for
C-----CALCULATING 99
INTEGER i, j
DO 100 i=1, 9
DO 100 j=1, 9
PRINT *, i, j, i*j
100 CONTINUE
END
www.eeworm.com/read/407116/11429248
for fixed.for
C-----CALCULATING 99
INTEGER i, j
DO 100 i=1, 9
DO 100 j=1, 9
PRINT *, i, j, i*j
100 CONTINUE
END
www.eeworm.com/read/231652/14225009
pas ac1053.pas
{In fact it's just calculating the GCD of the given numbers}
program ural1053;
var
n,i:integer;
a,b:longint;
function gcd(a,b:longint):longint;
var
t:longint;
begin
if a
www.eeworm.com/read/119200/14837572
cpp pi.cpp
#include
#include
#include
main()
{
float s;
int b,x,n,c,i,j,d,l,a[5000];
printf("*************** WELCOME **************\n\n");
printf("This programme is for
www.eeworm.com/read/116744/14955813
txt ch08l01.txt
Listing 8.1 ThreadTestApplet source code.
// Most of the code in ThreadTestApplet.java is devoted to setting up the
// interface and reporting the formatted results. The working code for
// starting,
www.eeworm.com/read/201292/15411737
cpp prog2_01.cpp
// Program 2.1 - Calculating with integer constants
#include // For output to the screen
using std::cout;
using std::endl;
int main() {
cout
www.eeworm.com/read/192219/8398280
m chap5_2f.m
function [Kpidi,BsJ]=pid_gaf(Kpidi,BsJ)
global rin yout timef
ts=0.001;
sys=tf(400,[1,50,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
rin=1.0;
u_1=0.0;u_2=0.0;
y_1=0.0;y_2=0.0;
www.eeworm.com/read/389659/8509131
m chap2_1.m
%Expert PID Controller
clear all;
close all;
ts=0.001;
sys=tf(5.235e005,[1,87.35,1.047e004,0]); %Plant
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;
y_1=0;y_2=0;y_3