Поделиться через


operator%

Возвращает остаток при делении на соответствующие элементы имеют размер 2 измененных valarrays или деления valarray указанным значением или деления указанное значение valarray.

template<class Type>
   valarray<Type> operator%(
      const valarray<Type>& _Left,
      const valarray<Type>& _Right
   );
template<class Type>
   valarray<Type> operator%(
      const valarray<Type>& _Left,
      const Type& _Right
   );
template<class Type>
   valarray<Type> operator%(
      const Type& _Left,
      const valarray<Type>& _Right
   );

Параметры

  • _Left
    Значение или valarray то служат в качестве делитель, в который другие значения или valarray разделять.

  • _Right
    Значение или valarray то служат в качестве делителя, который делится на другое значение или valarray.

Возвращаемое значение

Valarray, элементы которого — мудрые оставшиеся _Left разделило _Right.

Пример

// valarray_op_rem.cpp
// compile with: /EHsc
#include <valarray>
#include <iostream>

int main( )
{
   using namespace std;
   int i;

   valarray<int> vaL ( 6 ), vaR ( 6 );
   valarray<int> vaREM ( 6 );
   for ( i = 0 ; i < 6 ; i += 2 )
      vaL [ i ] =  53;
   for ( i = 1 ; i < 6 ; i += 2 )
      vaL [ i ] =  -67;
   for ( i = 0 ; i < 6 ; i++ )
      vaR [ i ] =  3*i+1;
   
   cout << "The initial Left valarray is: ( ";
      for ( i = 0 ; i < 6 ; i++ )
         cout << vaL [ i ] << " ";
   cout << ")." << endl;

   cout << "The initial Right valarray is: ( ";
      for ( i = 0 ; i < 6 ; i++ )
         cout << vaR [ i ] << " ";
   cout << ")." << endl;

   vaREM = ( vaL % vaR );
   cout << "The remainders from the element-by-element "
        << "division is the\n valarray: ( ";
      for ( i = 0 ; i < 6 ; i++ )
         cout << vaREM [ i ] << " ";
   cout << ")." << endl;
}
  

Требования

Заголовок:<valarray>

Пространство имен: std