problem z funkcją bool w warunku if
Ostatnio zmodyfikowano 2020-08-05 23:41
mokry_ryszard Temat założony przez niniejszego użytkownika |
problem z funkcją bool w warunku if » 2020-08-05 21:26:22 expected initialize before '(' token expected ')' before ')' token
bool get_content( int x, int y, int z );
for( int y; y > 0; y-- ) for( int z; z > 0; z-- ) for( int x; x > 0; x-- )
if( bool get_content( x, y, z ) == false ) { licznik++; }
|
|
nanoant20 |
» 2020-08-05 23:41:50 bool get_content( int x, int y, int z );
if( bool get_content( x, y, z ) == false ) { licznik++; }
Link: Składnia warunku ifmożna by zrobić coś w ten design bool get_content( int x, int y, int z ) { return true; } int main() { int x = 10, y = 20, z = 22; get_content( x, y, z ); bool check = get_content( x, y, z ); if( !check ) cout << "incorrect values"; else cout << "ok"; return EXIT_SUCCESS; } |
|
« 1 » |