Answer to Question #8913 in C++ for layla

Question #8913
write c++ program to multiply the array elements by 2*[A ]= A[i]*2;
1
Expert's answer
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS