代码搜索:modulus
找到约 3,028 项符合「modulus」的源代码
代码结果 3,028
www.eeworm.com/read/375190/2728739
hpp modulus.hpp
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
www.eeworm.com/read/375190/2728786
hpp modulus.hpp
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
www.eeworm.com/read/375190/2728833
hpp modulus.hpp
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
www.eeworm.com/read/375190/2735714
cpp modulus.cpp
// Copyright Aleksey Gurtovoy 2002-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
www.eeworm.com/read/375190/2735825
rst modulus.rst
.. Metafunctions/Arithmetic Operations//modulus |50
.. Copyright Aleksey Gurtovoy, David Abrahams 2007.
.. Distributed under the Boost
.. Software License, Version 1.0. (See accompanying
.. file LICE
www.eeworm.com/read/371561/2779526
java modulus.java
class Modulus {
public static void main(String args[]) {
int x = 42;
double y = 42.25;
System.out.println("x mod 10 = " + x % 10);
System.out.println("y mod 10 = " + y % 10);
www.eeworm.com/read/473097/6856306
java modulus.java
class Modulus {
public static void main(String args[]) {
int x = 42;
double y = 42.25;
System.out.println("x mod 10 = " + x % 10);
System.out.println("y mod 10 = " + y % 10);
www.eeworm.com/read/103443/15732179
cpp modulus.cpp
//这个程序在本书所带软盘中,文件名为MODULUS.CPP
//这个程序演示各种求余运算。
#include
void main(void)
{
int int1, int2, int3, int4, int5,int6;
int1 = 12;
int2 = int1 % (-7);
int3 = 0 % 3;
int4 = 5