How to subtract a value (N) from all valarray elements in C++

1 Answer

0 votes
#include <iostream>
#include <valarray>

using std::cout;
using std::endl;
using std::valarray;

void print(valarray<int> va)
{
	for (int i = 0; i < va.size(); i++)
		cout << va[i] << " ";
	cout << endl;
}

int main()
{
	valarray<int> va = { 421, 22, 993, 34, 55, 98, 1 };
	
	va = va - 1;

	print(va);

	return 0;
}


/*
run:

420 21 992 33 54 97 0

*/

 



answered May 16, 2018 by avibootz

Related questions

1 answer 144 views
1 answer 140 views
140 views asked May 15, 2018 by avibootz
1 answer 165 views
1 answer 179 views
179 views asked Jun 14, 2020 by avibootz
1 answer 129 views
129 views asked May 16, 2018 by avibootz
6 answers 729 views
729 views asked May 15, 2018 by avibootz
1 answer 174 views
...