本文整理汇总了C++中FormatAmt::amount方法的典型用法代码示例。如果您正苦于以下问题:C++ FormatAmt::amount方法的具体用法?C++ FormatAmt::amount怎么用?C++ FormatAmt::amount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormatAmt
的用法示例。
在下文中一共展示了FormatAmt::amount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: test26
int test26() {
int dollars = 0;
int cents = 98;
FormatAmt* pObj = new FormatAmt();
clock_t start = clock();
string result = pObj->amount(dollars, cents);
clock_t end = clock();
delete pObj;
string expected = "$0.98";
if(result == expected) {
cout << "Test Case 26: Passed! Time: " << static_cast<double>(end-start)/CLOCKS_PER_SEC << " seconds" << endl;
return 0;
} else {
cout << "Test Case 26: Failed! Time: " << static_cast<double>(end-start)/CLOCKS_PER_SEC << " seconds" << endl;
return 1;
}
}
示例2: 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;
}
}