当前位置: 首页>>代码示例>>C++>>正文


C++ FormatAmt类代码示例

本文整理汇总了C++中FormatAmt的典型用法代码示例。如果您正苦于以下问题:C++ FormatAmt类的具体用法?C++ FormatAmt怎么用?C++ FormatAmt使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了FormatAmt类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: main

int main()
{
	FormatAmt x;
	string result = x.amount(2000000000, 99);
	cout << result << endl;
	return 0;
}
开发者ID:Oscarbralo,项目名称:TopBlogCoder,代码行数:7,代码来源:Problem.cpp

示例2: test3

int test3() {
    int dollars = 249;
    int cents = 30;
    FormatAmt* pObj = new FormatAmt();
    clock_t start = clock();
    string result = pObj->amount(dollars, cents);
    clock_t end = clock();
    delete pObj;
    string expected = "$249.30";
    if(result == expected) {
        cout << "Test Case 3: Passed! Time: " << static_cast<double>(end-start)/CLOCKS_PER_SEC << " seconds" << endl;
        return 0;
    } else {
        cout << "Test Case 3: Failed! Time: " << static_cast<double>(end-start)/CLOCKS_PER_SEC << " seconds" << endl;
        return 1;
    }
}
开发者ID:rick-qiu,项目名称:topcoder,代码行数:17,代码来源:srm149_formatamt.cpp

示例3: test1

double test1() {
	int p0 = 49734321;
	int p1 = 9;
	FormatAmt * obj = new FormatAmt();
	clock_t start = clock();
	string my_answer = obj->amount(p0, p1);
	clock_t end = clock();
	delete obj;
	cout <<"Time: " <<(double)(end-start)/CLOCKS_PER_SEC <<" seconds" <<endl;
	string p2 = "$49,734,321.09";
	cout <<"Desired answer: " <<endl;
	cout <<"\t\"" << p2 <<"\"" <<endl;
	cout <<"Your answer: " <<endl;
	cout <<"\t\"" << my_answer<<"\"" <<endl;
	if (p2 != my_answer) {
		cout <<"DOESN'T MATCH!!!!" <<endl <<endl;
		return -1;
	}
	else {
		cout <<"Match :-)" <<endl <<endl;
		return (double)(end-start)/CLOCKS_PER_SEC;
	}
}
开发者ID:sreelakshmib,项目名称:topcoder_srm,代码行数:23,代码来源:FormatAmt.cpp


注:本文中的FormatAmt类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。