Write a program using class which reads a list of N number of integer type in an array. It modifies the list by multiplying 10 to every number of the list. The modified list is displayed.
#include<iostream.h> #include<conio.h> class array { public: void readarray(); void multiply(); }; void array::readarray() { int a[10]; cout<<"Enter the elements of the Array"<<endl; for(int i=0;i<=9;i++) cin>>a[i]; } void array::multiply() { int i,j,a[10],temp[10]; for(i=0;i<=9;i++) { for(j=0;j<=9;j++) temp[i]=(a[i]*10); } cout<<"Result are as follows"<<endl; for(j=0;j<=9;j++) cout<<temp[j]<<endl; } void main() { array mul; clrscr(); mul.readarray(); mul.multiply(); getch(); }
Description :
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Submit #Terms of Use
Copyright©2011 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com | Powered by Dhyeya
October 18th, 2011 at 2:39 pm
why u r use an extra for loop[