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 136 views
1 answer 135 views
135 views asked May 15, 2018 by avibootz
1 answer 157 views
1 answer 172 views
172 views asked Jun 14, 2020 by avibootz
1 answer 126 views
126 views asked May 16, 2018 by avibootz
6 answers 714 views
714 views asked May 15, 2018 by avibootz
1 answer 164 views
...