代码搜索:arithmetic
找到约 7,844 项符合「arithmetic」的源代码
代码结果 7,844
www.eeworm.com/read/167185/5463871
pcb_filt
#@(#)Pcb_filt 1.3 7/19/93 ERL
int filt_length_L ?= 31: "Largest length";
int filt_length_S ?= 21: "Smallest length";
#int ngrid = 201: "nubmer of grid points";
float samp_freq ?= 1: "sampling frequenc
www.eeworm.com/read/163260/5510938
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// Arithmetic.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdaf
www.eeworm.com/read/162614/5518229
c struct3.c
/* PR c++/23180. */
/* Initialize a global variable with an expression that attempts to use
pointer arithmetic to calculate a structure field offset. */
struct Track {
char soundName[15];
};
www.eeworm.com/read/162614/5529447
c pointer-arith-4.c
/* Test diagnostics for arithmetic on void and function pointers.
Test with -pedantic-errors. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-peda
www.eeworm.com/read/162614/5529598
c pointer-arith-3.c
/* Test diagnostics for arithmetic on void and function pointers.
Test with -pedantic. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-pedantic" }
www.eeworm.com/read/162614/5530199
c pointer-arith-2.c
/* Test diagnostics for arithmetic on void and function pointers.
Test with -Wpointer-arith. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-Wpoin
www.eeworm.com/read/475959/6771483
cpp 2_24.cpp
#include
using namespace std;
int main()
{ int num1,num2; char oper;
coutnum1>>oper>>num2;
switch(oper) //用开关语句
www.eeworm.com/read/230048/6789150
java allops.java
//: c03:AllOps.java
// Tests all the operators on all the primitive data types
// to show which ones are accepted by the Java compiler.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
//
www.eeworm.com/read/473097/6856309
java basicmath.java
class BasicMath{
public static void main(String args[]) {
//用整型变量实现各个基本算术运算符的功能。
System.out.println("Integer Arithmetic");
int ia = 1 + 2;
int ib = ia * 4;
int ic = ib /5;
www.eeworm.com/read/471682/6888002
c program2_02.c
/* Program 2.2 Using a variable */
#include
int main(void)
{
int salary; /* Declare a variable called salary */
salary = 10000; /* A simple arithmetic a