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

#include <iostream>

using namespace std;

int main(){

int a[8];
for(int i=0;i<8;i++){
cout<<"\nEnter the daily temparature";
cin>>a[i];
int pos,num;
cout<<"enter the pos";
cin>>pos;
cout<<"enter the num";
cin>>num;
for(i=8;i>=pos;i--)
a[i+1]=a[i];
a[pos]=num;
cout<<"\nNew array";
for(i=0;i<9;i=i+1)
cout<<a[i];
}

return 0;
}

You might also like