代码搜索:Operators
找到约 8,993 项符合「Operators」的源代码
代码结果 8,993
www.eeworm.com/read/325023/13230981
java ternaryifelse.java
//: operators/TernaryIfElse.java
import static net.mindview.util.Print.*;
public class TernaryIfElse {
static int ternary(int i) {
return i < 10 ? i * 100 : i * 10;
}
static int stan
www.eeworm.com/read/319921/13439537
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/319883/13440297
cpp prog3_04.cpp
// Program 3.4 Using the bitwise operators
#include
#include
using std::cout;
using std::endl;
using std::setfill;
using std::setw;
int main() {
unsigned long red = 0X
www.eeworm.com/read/316203/13528498
txt multiplier_booth.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/313151/13595292
java rightshifttest2.java
// operators/RightShiftTest2.java
// TIJ4 Chapter Operator, Exercise 12, page 116
/* Start with a number that is all binary ones. Left shift it, then use the
* unsigned right-shift operator to rig
www.eeworm.com/read/312754/13605449
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/307616/13719231
cpp ex8_09.cpp
// Ex8_09.cpp : main project file.
// Overloading operators in the value class, Length
#include "stdafx.h"
using namespace System;
value class Length
{
private:
int feet;
int inches;
www.eeworm.com/read/305986/13755620
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/131315/5936560
c cross-test.c
/* This small function uses all the arithmetic operators that
libgcc1.c can handle. If you can link it, then
you have provided replacements for all the libgcc1.c functions that
your target m