#include<iostream>
#include<conio.h>
using namespace std;
void main()
{
double value[15];
for(int i=0;i<15;i++)
{
cout<<"Enter value = "<<i+1<<"==";
cin>>value[i];
}
for(int b=14;b>=0;b--)
cout<<"The Revers = = "<<value[b]<<endl;
getch();
}
Output
Find Tons of C++ Programming examples, projects with code. Also find books solutions.
0 Questions:
Post a Comment