napisze mi ktoś kod źródłowy tych programów z załączników w c++ najprosciej jak się da, z urzyciem instrukcji if, for, while
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
zrozumialem tylko jedno zadnie w reszcie nie rozumiem tresci...
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int a,b;
cout<<"podaj dwie liczby"<<endl;
cin>>a;
cin>>b;
if (a>b)
cout<<a<<">"<<b<<endl;
if (a<b)
cout<<a<<"<"<<b<<endl;
if (a=b)
cout<<a<<"="<<b<<endl;
system ("PAUSE");
return 0;
}