Hmm... Moze byc Cpp? ; d
#include <iostream>
using namespace std;
int main()
{
int l1,l2,l3; // liczba1 itd;
do
cout<<"Podaj liczbe \n";
cin>>l1;
cout<<l1<<endl;
cin>>l2;
cout<<l2<<endl;
cin>>l3;
cout<<l3<<endl;
}
while(l1+l2==l3);
getchar();
return 0;
Jesli to nie to, to napisz dla jakich kombinacji ma dzialac, a dla jakich nie, pozdrawiam ! ; d
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Hmm... Moze byc Cpp? ; d
#include <iostream>
using namespace std;
int main()
{
int l1,l2,l3; // liczba1 itd;
do
{
cout<<"Podaj liczbe \n";
cin>>l1;
cout<<l1<<endl;
cout<<"Podaj liczbe \n";
cin>>l2;
cout<<l2<<endl;
cout<<"Podaj liczbe \n";
cin>>l3;
cout<<l3<<endl;
}
while(l1+l2==l3);
getchar();
return 0;
}
Jesli to nie to, to napisz dla jakich kombinacji ma dzialac, a dla jakich nie, pozdrawiam ! ; d