September 2018 1 18 Report

Mamy taki o to kod:

#include <iostream>

using namespace std;
float x;


int main()
{
cout<< "Zgadnij ile lat ma Maciek.";

while(true)
{
cout << "Podaj swoja wartosc: ";
cin >> x;


if( x > 15 )
{
cout << "Maciek ma mniej lat." <<endl;

}

else if ( x < 15 )
{
cout << "Maciek ma wiecej lat." <<endl;
}

else if ( x == 15 )
{
cout << "Tak ! Maciek ma 15 lat ! Zgadles !" << endl;
break;
}
}
return 0;

}


Wszystko działa pięknie, do momentu wpisania przez złośliwego użytkownika liczby minusowej, tudzież 'a'. Proszę o pomoc!


Recommend Questions



Life Enjoy

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

Get in touch

Social

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