代码搜索:Convert
找到约 10,000 项符合「Convert」的源代码
代码结果 10,000
www.eeworm.com/read/460903/7238057
obj convert.obj
www.eeworm.com/read/458859/7288505
vhd convert.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.all;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
entity convert is
PORT(
Scan : in STD_LOGIC_VECTOR(7 DOWNTO 0);
pr
www.eeworm.com/read/458859/7288518
bsf convert.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/458559/7294008
cpp convert.cpp
#include
typedef char ElemType;
typedef struct LNode
{
ElemType elem;
LNode *next;
}LNode,*LStack;
void Init(LStack &S)
{
S = NULL;
}
void Push(LStack &S,ElemType ele
www.eeworm.com/read/457902/7315821
c convert.c
/* convert.c -- automatic type conversions */
#include
int main(void)
{
char ch;
int i;
float fl;
fl = i = ch = 'C'; /* line 9 */
www.eeworm.com/read/457219/7331768
c convert.c
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: conver
www.eeworm.com/read/456596/7344194
c convert.c
/* 程序名:convert.c
功能:图像格式的转换
*/
#include
#include
#include
int main( int argc, char** argv )
{
IplImage* src;
// -1: the loaded image will be loaded as is (with numbe
www.eeworm.com/read/456596/7344195
dsw convert.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/456596/7344196
dsp convert.dsp
# Microsoft Developer Studio Project File - Name="convert" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) C
www.eeworm.com/read/456533/7345949
cpp convert.cpp
// convert.cpp -- converts stone to pounds
#include
int stonetolb(int); // function prototype
int main()
{
using namespace std;
int stone;
cout