problemscpp
A collection of my answers to algorithm problems in c++.
静态 Public 成员函数 | 所有成员列表
acwing::acwing618类 参考

AcWing 618. 燃料消耗 更多...

#include <acwing.h>

静态 Public 成员函数

static int main (istream &, ostream &)
 

详细描述

AcWing 618. 燃料消耗

在文件 acwing.h252 行定义.

成员函数说明

◆ main()

int acwing::acwing618::main ( istream &  cin,
ostream &  cout 
)
static

在文件 acwing.cpp627 行定义.

627 {
628 long t;
629 long s;
630 cin >> t >> s;
631 cout << setiosflags(ios::fixed) << setprecision(3) << static_cast<double>(t * s) / 12;
632 return 0;
633 }

被这些函数引用 acwing::TEST().


该类的文档由以下文件生成: