Write a function named sortie that takes three integer parameters by reference and rearranges them in ascending order--the first parameter being the smallest, the third parameter being the largest.
Explanation:
#include <stdio.h>
using namespace std;
int main()
{
cout<<"Enter 3 number";
int first, second, third;
cin>>first>>second>>third;
cout<<endl;
cout<<"Unsorted :"<<first<<","<<second<<","<<third<<endl;
sortie(first,second,third);
cout<<"Sorted :"<<first<<","<<second<<","<<third<<endl;
return 0;
}
- Three numbers are inputted from the user.
- Sortie function is used to sort the data in specified places.
Answer:
well if your on windows you click the start button then click the power button then click shutdown if your on mac you click apple menu then shutdown if on a chromebook just hold the power button for 3 to 5 seconds
Explanation:
Answer:
If Winston invested $200 every year at 6% for 30 years, the $200 would be an annuity and the future value of an Annuity is calculated
as:= Annuity x ( (1 + rate) ^ number of years - 1) / rate = 200 x ( ( 1 + 6%) ³⁰ - 1) / 6%= $15,811.64 Winston
would have $15,811.64
Explanation:
math is proof