[C++]
Napisz program porównujący 3 liczby i wypisujący je w kolejności od najmniejszej liczby. (mają być użyte tylko ify)
Program z tego co mi mówiono jest łatwy, ale nie potrafię wykombinować jak wypisać posortowane już liczby xD
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int a,b,c,v;
n=0;
s=0;
m=0;
v=0;
cout<<"Podaj liczbe a"<<endl;
cin>>a;
cout<<"Podaj liczbe b"<<endl;
cin>>b;
cout<<"Podaj liczbe c"<<endl;
cin>>c;
if(a>b)
{
v=a;
a=b;
b=v;
}
if(b>c)
{
v=b;
b=c;
c=v;
}
if(a>b)
{
v=a;
a=b;
b=v;
}
cout<<tu powinno być wypisanie xD
getch();
}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
licze na naj...
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int a,b,c,v;
cout<<"Podaj liczbe a"<<endl;
cin>>a;
cout<<"Podaj liczbe b"<<endl;
cin>>b;
cout<<"Podaj liczbe c"<<endl;
cin>>c;
if(a>b)
{
v=a;
a=b;
b=v;
}
if(b>c)
{
v=b;
b=c;
c=v;
}
if(a>b)
{
v=a;
a=b;
b=v;
}
cout<<"\nOd najmniejszej: "<<a<<","<<b<<","<<c;
cout<<"\n\n";
getch();
}