NNNN

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<iostream.

h>
int i;
void main()
{
int a[10];
cout<<"please enter the value of a"<<endl;
for(i=0;i<=9;i++)
{
cin>>a[i];
}
for(i=0;i<=9;i++)
{ cout<<a[i]<<endl;
}
}

You might also like