October 2018 1 779 Report

[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();
}


More Questions From This User See All

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.