标签: c
我正在复习一堂课,我拥有的代码与我的老师所拥有的相同-仅他使用Visual Studio。第2行是}的问题,“预期标识符或'('错误”),但是为什么??我需要解决什么问题?
void towers(int number_of_discs, int from, int to, int spare); { if(number_of_discs > 0) { towers(number_of_discs - 1, from, to, spare);