代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/476030/6772700
vhd counters.vhd
-- MAX+plus II VHDL Example
-- Efficient Counter Inference
-- Copyright (c) 1994 Altera Corporation
ENTITY counters IS
PORT
(
d : IN INTEGER RANGE 0 TO 255;
clk : IN BIT;
clear
www.eeworm.com/read/174065/6783620
c ch17-11.c
#include
main()
{
int x,y;
printf("Enter integer X and Y: ");
scanf("%d%d",&x,&y);
if(x!=y)
if(x>y)
printf("X>Y\n");
else
printf("X
www.eeworm.com/read/174065/6783622
c ch17-8.c
#include "stdio.h"
main()
{
int x;
printf("Enter an integer: ");
scanf("%d",&x);
if(x!=0)
{
if(x>0)
{
x=x%2;
if(x==0)
printf("正偶数\n"
www.eeworm.com/read/280869/6784108
frm frmroom.frm
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
Begin VB.Form frmRoom
Caption = "客房信息列表"
ClientHeight = 3972
ClientLeft = 60
www.eeworm.com/read/275075/6785691
pas pl0-pas.txt.pas
{ Pascal-S from N Wirth's paper 'Pascal-S: a subset and its implementation'
which is most easily found in the book 'Pascal: the language and its
implementation' edited by Barron. You might also
www.eeworm.com/read/329989/6788353
vhd vgasig.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity vgasig is
Port ( clock : in std_logic;
reset : in std_logic;
www.eeworm.com/read/475504/6790286
sql wrongplsql.sql
set serveroutput on
declare
tempno integer:=100;
begin
tempno=tempno+1;
end;
www.eeworm.com/read/475504/6790334
sql correctplsql.sql
set serveroutput on
declare
tempno integer:=90;
begin
tempno:=tempno+1;
end;
www.eeworm.com/read/475260/6795403
vb vidtranscode.asmx.vb
Imports System.Web
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports Microsoft.VisualBasic
Imports System.Diagnostics
Imports System.IO
Imports System.Text.RegularExpre
www.eeworm.com/read/475280/6795507
bas module6.bas
Attribute VB_Name = "Module6"
'样本学习模块
'//////////////////////////////////////////////////yr 04-1-11
Public W() As Single
Public Xi() As Integer
Public x() As Integer '样本输入
Public d() As Integer