这个cpp代码如何在没有main函数的情况下运行?

时间:2016-07-21 07:15:07

标签: c++ main

topcoder问题由zig_zag提交的BearNSWE

printf("Put a bottle in the recycling, %d empty bottles in the bin.\n", numberOfBottles);

2 个答案:

答案 0 :(得分:2)

topcoder运行器需要一个具有特定方法接口的类,它在问题语句中指定。对于此特定问题,它是here

Topcoder将使用其他来源编译此代码 - 运行示例的主要方法 - 已添加。

如果你想在topcoder编辑器中本地测试你的代码(或者只是自动生成运行它的代码),可以使用几个插件,例如ExampleBuilder

答案 1 :(得分:1)

这只是一个带有类定义的.cpp文件。 main()函数位于项目的其他位置。