本文整理汇总了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;
}
示例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;
}
}
示例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;
}
}