代码搜索:CLOSE
找到约 10,000 项符合「CLOSE」的源代码
代码结果 10,000
www.eeworm.com/read/425972/6969170
pas mo_en.pas
{ MPUI, an MPlayer frontend for Windows
Copyright (C) 2005 Martin J. Fiedler
This program is free software; you can redistribute it and/or modify
it under t
www.eeworm.com/read/469627/6972259
asv draft.asv
clc
clear all
close all
N=64;
w=rectwin(N);
f=abs(fft(w,1024));
f=10*log(f);
figure
subplot(211)
stem(w)
subplot(212)
plot(f)
axis([0 512 -20 50 ])
www.eeworm.com/read/469627/6972271
m draft.m
clc
clear all
close all
N=64;
w=rectwin(N);
f=abs(fft(w,1024));
f=10*log(f);
figure
subplot(211)
stem(w)
subplot(212)
plot(f)
axis([0 512 -20 50 ])
www.eeworm.com/read/469421/6976555
txt javatcp01.txt
import java.net.*;
import java.io.*;
import java.util.*;
/**
* TCP协议下单向通信的客户端程序。
* @author new
*
*/
public class TCPClientA {
public static void main(String[] args) {
Socket s=null;
try {
www.eeworm.com/read/468886/6981272
java server.java
// 程序:简单的连线服务器端
// 范例文件:Server.java
import java.io.*;
import java.net.*;
public class Server
{
public static void main(String args[])
{
try
{
ServerSocket S =