これは本当に簡単な質問です。
関数があるとします:
int fun(int n){
if (n > 3)
return n;
else
fail(); // this function outputs error message
// and terminates the program
// no return value
}
n <=3 の場合、戻り値はありません。これはどのように修正できますか?