代码搜索:CLOSE
找到约 10,000 项符合「CLOSE」的源代码
代码结果 10,000
www.eeworm.com/read/451385/7466260
m fern.m
function fern
%FERN MATLAB implementation of the Fractal Fern
% Michael Barnsley, Fractals Everywhere, Academic Press, 1993.
% This version runs forever, or until stop is toggled.
% See als
www.eeworm.com/read/451385/7466262
m interpgui.m
function interpgui(arg1,arg2)
%INTERPGUI Behavior of interpolating functions.
% Demonstrates interpolation by a piecewise linear interpolant,
% a polynomial, a spline, and a shape preserving H
www.eeworm.com/read/451329/7467053
c creattmp.c
#include
#include
#include
void main(void)
{
char path[64] = "C:\\TEMP\\";
int handle;
if ((handle = creattemp(path, 0)) == -1)
printf("Error cr
www.eeworm.com/read/451208/7469220
cs logvendormodification.cs
using System;
using System.Data;
using System.Data.SqlClient;
using Microsoft.SqlServer.Server;
using System.Transactions;
public partial class Triggers
{
[Microsoft.SqlServer.Server.Sql
www.eeworm.com/read/451071/7472698
java ftpstreamtest.java
import cz.dhl.io.*;
import cz.dhl.ftp.*;
import java.io.*;
public class FtpStreamTest
{
public static void main(String args[])
{
/* host = ftp.netscape.com; path = pub;
www.eeworm.com/read/450999/7473936
pas fisier.pas
program fisier;
var fis:text;
a:integer;
begin
writeln('a= ');
readln(a);
assign(fis,'zzz.txt');
writeln(fis,650);
close
end.
www.eeworm.com/read/450999/7473945
pas cript.pas
program criptare_decriptare;
procedure criptare(const sursa, dest:openstring);
var f1, f2:text;
c1, c2: char;
begin
Assign(f1, sursa);
Assign(f2, dest);
Reset(f1);
Rewrite(f2);
while not
www.eeworm.com/read/450999/7474031
pas test2.pas
var f:text;
n,i,nr :integer;
v:array[1..100]of integer;
begin
assign(f,'numere2.txt');
reset(f);
readln(f,n);
while not eoln(f) do
begin
nr:=nr+
www.eeworm.com/read/450999/7474047
pas rotest.pas
program test;
var f,g:text;
a,b,max:integer;
begin
assign (f,'numere.in');
reset(f);
assign (g,'numere.out');
rewrite(g);
while not eof(f) do
begin
read
www.eeworm.com/read/450999/7474053
pas rofish3.pas
program numere;
var f:text;
n,i,s,p:integer;
v:array[1..100] of integer;
begin
write('n=');readln(n);
assign(f,'abc.txt');
reset(f);
s:=0;
p:=0;
for i:= 1 to n do
beg