" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
using namespace std;
void main()
{
int x;
cout<<"Podaj liczbe wieksza od 10!\n";
do
{
cin >>x;
}while(x <= 10);
cout << "\nLiczba " << x << " jest wieksza od 10.\n";
system("PAUSE");
}
******************************************************************************
#include<iostream>
using namespace std;
void main()
{
int x;
cout<<"Podaj liczbe wieksza od 10!\n";
cin >> x;
if(x > 10)
cout << "Liczba " << x << " jest wieksza od 10.\n";
else
cout << "Liczba " << x << " jest mniejsza od 10.\n";
system("PAUSE");
}