Untitled
unknown
c_cpp
a year ago
340 B
12
Indexable
#include <iostream>
int main()
{
int wiek;
std::cin >> wiek;
if( wiek >= 18 )
if( wiek <= 100 )
{
std::cout << "Twierdzisz, ze jestes pelnoletni..." << std::endl;
std::cout << "ale czy to kogos interesuje? :)" << std::endl;
}
std::cout << "Koniec" << std::endl;
return 0;
}
Editor is loading...
Leave a Comment