代码搜索:Input
找到约 10,000 项符合「Input」的源代码
代码结果 10,000
www.eeworm.com/read/184195/9118113
asm input_name.asm
www.eeworm.com/read/380637/9136261
h input_mw.h
#if !defined(AFX_INPUT_MW_H__C4A6EF63_B47C_4B08_A9DE_73088FCD0CAC__INCLUDED_)
#define AFX_INPUT_MW_H__C4A6EF63_B47C_4B08_A9DE_73088FCD0CAC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _
www.eeworm.com/read/380637/9136278
cpp input_mw.cpp
// INPUT_MW.cpp : implementation file
//
#include "stdafx.h"
#include "infohide.h"
#include "INPUT_MW.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FI
www.eeworm.com/read/183768/9140432
sort input.txt.sort
A Alice Daddy Daddy, Emma Her Shyly,
``Daddy, ``I a alive, almost asks, at beautiful
bird bird, blows but fiery fiery flight.
flowing hair, hair. has he her her her, him
him, in is is it like
www.eeworm.com/read/183768/9140506
txt input_file.txt
MooCat is a long-haired white kitten with large black patches.
"Like a cow looks, only he is a kitty, poor kitty," Alice says,
cradling MooCat in her arms, pretending he's not struggling to
brea
www.eeworm.com/read/380486/9145157
c load_input.c
/* load_input.c */
/* Copyright 2004-2006 Oswaldo Morizaki */
/* This file is part of ga-nn-ag.
ga-nn-ag is free software; you can redistribute it and/or modify
it under the terms of the
www.eeworm.com/read/380486/9145239
c input_gen.c
#include "my_header.h"
/* Hard Coded */
/* 1% deviation */
float rand_gen(int seed)
{
long int h;
double temp;
float ret;
h = time(NULL);
srand( ( (unsigned int)(h/2) )+ rand()/128 + seed);
www.eeworm.com/read/281557/9150504
c dif_input.c
//////////差动输入,定时启动,由T2定时////////////////
/////////选择6,7通道为ADC0差动转化通道,其中第6通道为P3.6,第7通道为P.7//////////////
//////dif_input.c///////////////////////////////////
#include "lcd.h"//笔者所写的LCD显示头文件,具体见LCD章
www.eeworm.com/read/183481/9157812
txt input3.txt
program a ;
var
x , y , z , p , s : real ;
begin
read ( x , y , z ) ;
p :=( x + y + z)/2;
s := sqrt ( p *( p - x )*(p - y ) * ( p - z ));
writeln ( s );
end .