Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
#include <iostream>
using namespace std;
int main()
{
int dizi[3],temp;
for(int i=0;i<=2;i++)
{
cout<<"sayigir=";
cin>>dizi;
}
for(int a=0;a<=2;a++)
{
for(int b=0;b<=2;b++)
{
if(dizi>dizi[b+1])
{
temp=dizi;
dizi=dizi[b+1];
dizi[b+1]=temp;
}
}
}
for(int d=0;d<=2;d++){
cout<<dizi[d]<<endl;
}
return 0;
}