- 授权协议: GPL
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: http://www.kancloud.cn/johnsonyl/cpps/260361
- 软件文档: http://www.kancloud.cn/johnsonyl/cpps/260361
软件介绍
cpps 脚本是一个基于 C++ 的脚本语言。
基础语法:
if&else
接口说明
根据括号中数据判断执行相关代码.
代码演示
var i = toint(io.getc());
if(i == 10)
{
println("i 等于 10");
}
else if(i > 10)
{
println("i 大于 10");
}
else
{
println("i 小于 10");
}for
接口说明
循环执行代码.
代码演示
for(var i = 0;i < 10;i++)
{
println(i);
}
Complexity and Approximation
G. Ausiello、P. Crescenzi、V. Kann、Marchetti-sp、Giorgio Gambosi、Alberto M. Spaccamela / Springer / 2003-02 / USD 74.95
This book is an up-to-date documentation of the state of the art in combinatorial optimization, presenting approximate solutions of virtually all relevant classes of NP-hard optimization problems. The......一起来看看 《Complexity and Approximation》 这本书的介绍吧!
