代码搜索:Addition
找到约 2,224 项符合「Addition」的源代码
代码结果 2,224
www.eeworm.com/read/124150/6054519
c v_video.c
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// Th
www.eeworm.com/read/113030/6142226
h arithmetic.h
// Chapter 11 of C++ How to Program
// Debugging problem (arithmetic.h)
#ifndef ARITHMETIC_H
#define ARITHMETIC_H
// template class Arithmetic
template< T >
class Arithmetic {
public:
www.eeworm.com/read/404153/11491038
c example 3-31.c
; Example 3 - 31. Extended Precision Multiplication C Listing Shifting before Addition
int epmpy(int A, int B)
{
short AH, BH;
unsigned short AL, BL;
int ahbl, albh, ahbh;
AH = A>>16; AL
www.eeworm.com/read/155832/11844590
java example0701_components.java
/* 本程序使用常见组件设计一个用于输入学生信息的用户界面 */
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.io.*;
public class Example0701_Components extends J
www.eeworm.com/read/343587/11941017
plg debugycbcr.plg
Build Log
--------------------Configuration: DebugYCbCr - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\Ad
www.eeworm.com/read/342347/12026885
cpp toj_2901.cpp
/*2901. Very easy
--------------------------------------------------------------------------------
Time Limit: 2.0 Seconds Memory Limit: 65536K
Total Runs: 131 Accepted Runs: 46
Case Time Limit
www.eeworm.com/read/342347/12026942
cpp toj_2901_wa.cpp
/*2901. Very easy
--------------------------------------------------------------------------------
Time Limit: 2.0 Seconds Memory Limit: 65536K
Total Runs: 131 Accepted Runs: 46
Case Time Limit
www.eeworm.com/read/254802/12117677
txt dict.txt
abandon
abc
abccc
abccccc
ability
abcc
able
aboard
about
above
abroad
absence
absent
absolute
absolutely
absorb
abstract
actress
actual
actually
adapt
add
addition
additional
a
www.eeworm.com/read/220676/14792423
txt program.txt
program main;
var x,y;
PROCEDURE addition(var x,var y);
var z
PROCEDURE subtion(var x,var y);
BEGIN
z:=subtion(x,y)
END;
begin
addtion(x,y)
end.