Untitled
unknown
c_cpp
a year ago
304 B
10
Indexable
#include <iostream>
int main()
{
int liczba = 30;
if( liczba < 15 )
{
std::cout << "Liczba < 15\n";
}
else if( liczba == 15 )
{
std::cout << "Liczba == 15\n";
}
else
{
std::cout << "Liczba > 15\n";
}
return 0;
}
Editor is loading...
Leave a Comment