代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/366508/2890022
h okcons.h
#ifndef __OKCONS_H
#define __OKCONS_H
// From OTypes.h
#define WORD_SIZE 40
// From OKConst.h
#define OKCOLTYPE_NUMERIC 0
#define OKCOLTYPE_TEXT 1
#define OKCOLTYPE_TI
www.eeworm.com/read/359371/2978280
cpp main.cpp
#include
#include
using namespace std;
int multiply(int x, int y){
return x * y;
}
int main(void){
int iArray[5]={1, 2, 3, 4, 5};
cout
www.eeworm.com/read/156960/5608187
cpp p4-180.cpp
#include
#include
#include
#include
using namespace std;
//创建一个list容器的实例LISTINT
typedef list LISTINT;
//创建一个list容器的实例LISTCHAR
typedef list
www.eeworm.com/read/475959/6771437
cpp 10_43.cpp
#include
#include //包含数值算法头文件
using namespace std;
class multclass //定义multclass类
{ public:
int operator()(int x, int y) const {return x*y;} //重载操作符operator()
};
void m
www.eeworm.com/read/475959/6771453
cpp 10_44.cpp
#include
#include //包含数值算法头文件
#include //包含标准函数对象头文件
using namespace std;
void main()
{ int A[] = {1, 2, 3, 4, 5}; const int N = sizeof(A) / sizeof(int);
www.eeworm.com/read/471777/6881718
vhd list_ch03_13_led_test.vhd
-- Listing 3.13
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity hex_to_sseg_test is
port(
clk: in std_logic;
sw: in std_logic_vector(7 downto 0);
www.eeworm.com/read/471796/6881980
vhd list_ch04_14_disp_test.vhd
-- Listing 4.14
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity disp_mux_test is
port(
clk: in std_logic;
btn: in std_logic_vector(3 downto 0);
www.eeworm.com/read/471796/6881981
vhd list_ch04_16_hex_test.vhd
-- Listing 4.16
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity hex_mux_test is
port(
clk: in std_logic;
sw: in std_logic_vector(7 downto 0);
a