“error C4716: ✀add✀ : must return a value”什么意思?

2024-11-01 05:29:20
推荐回答(1个)
回答1:

int add(int n)--这函数,结果是一个整型数。
{
……
……
return 100; //函数中,应该有个返回值
}