代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/388569/8601185
cpp 1119 simple algorithmetics.cpp
//变态的题目
//教训:数据溢出,题意没完全理解
#include
#include
using namespace std;
char oper;
char num1[510],num2[510];
char str[1100],ans[510][510];
int len[510],len1,len2;
void strTonum(
www.eeworm.com/read/388569/8601212
cpp 2019.cpp
/*
2019 数列有序!
Time Limit : 1000 ms Memory Limit : 32768 K Output Limit : 256 K
GUN C++
*/
#include
using namespace std;
const int NMAX=100;
int main()
{
int n,m,ca,n
www.eeworm.com/read/187770/8601830
h binnode.h
#pragma once
#include
using namespace std;
class StuInfo
{
public :
char Name[30];
char Num[15];
int Score;
StuInfo()
{
/*cout
www.eeworm.com/read/432495/8601980
m chap3_1.m
%Expert PID Controller
clear all;
close all;
ts=0.001;
sys=tf(5.235e005,[1,87.35,1.047e004,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
u_1=0.0;u_2=0.0;u_3=0.0;
y_1=0;y_2=0;y_3=0
www.eeworm.com/read/388545/8602461
c position.c
/* position.c
* CMUnited-97 (soccer client for Robocup-97)
* Peter Stone
* Computer Science Department
* Carnegie Mellon University
* Copyright (C) 1997 Peter Stone
*
* CMUn
www.eeworm.com/read/388538/8602917
java sortnum.java
import java.util.*;
public class Sortnum
{
public static void main(String args[])
{
float num[]={3.5f,12.8f,256.23f,18.5f,21.6f,33.6f,45.6f};
System.out.println("数组元
www.eeworm.com/read/388471/8607058
c c5.c
/*5.3.4 源程序*/
#include
#include
#include
#define LEFTPRESS 0xff01
#define LEFTCLICK 0xff10
#define LEFTDRAG 0xff19
#define MOUSEMOVE 0xff08
struct
{
int nu
www.eeworm.com/read/388460/8607486
c 6.c
# define N 5
main( )
{
int x , num[N+1] ;
float st[N+1] , ave , sum=0;
for (x=1 ; x
www.eeworm.com/read/388457/8607921
m p7_1.m
% Program P7_1
% Design of a Butterworth Bandstop Digital Filter
Ws = [0.4 0.6]; Wp = [0.2 0.8]; Rp = 0.4; Rs = 50;
% Estimate the Filter Order
[N1, Wn1] = buttord(Wp, Ws, Rp, Rs);
% Design the
www.eeworm.com/read/388457/8607938
m p6_2.m
% Program P6_2
% Parallel Form Realizations of an IIR Transfer
num = input('Numerator coefficient vector = ');
den = input('Denominator coefficient vector = ');
[r1,p1,k1] = residuez(num,den);