cs-lab34/block_with.cpp

9 строки
202 B
C++

#include "block_with.h"
bool input_block_with(double& BLOCK_WIDTH)
{
if((BLOCK_WIDTH<3) || (BLOCK_WIDTH>30))
return false;
if((BLOCK_WIDTH>3) && (BLOCK_WIDTH<30))
return true;
}