2012-05-08T08:48:36-04:00
write c++ program to multiply the array elements by 2*[A ]= A[i]*2;
1
2012-05-08T09:49:02-0400
#include "stdafx.h" #include<iostream> #include<conio.h> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { int numbers[100]; int n=0; cout<<"Enter the size of array : "; cin>>n; for(int i=0;i<n;i++){ cout<<"Enter element number "<<(i+1)<<": "; cin>>numbers[i]; } int multy=1; for(int i=0;i<n;i++){ multy*=numbers[i]*2; } cout<<" The multiply the array elements is: "<<multy; getch(); return 0; }
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS !
Learn more about our help with Assignments:
C++
Comments