本文整理汇总了C++中Solution::add方法的典型用法代码示例。如果您正苦于以下问题:C++ Solution::add方法的具体用法?C++ Solution::add怎么用?C++ Solution::add使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Solution
的用法示例。
在下文中一共展示了Solution::add方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main() {
Solution a;
cout << a.add("100", "23") << endl;
cout << a.smallMultiplyWithDigits(11, "99", 2) << endl;
cout << a.multiply("123", "456") << endl;
cout << a.multiply("123", "0") << endl;
}
示例2: main
int main() {
Solution a;
string b, c;
cin >> b >> c;
cout << "sum: " << a.add(b, c) << endl;
cout << "product: " << a.multiply(b, c) << endl;
}
示例3: main
int main()
{
Solution sol;
/* cout << sol.add("18765", "39") << endl; */
cout << sol.add("1", "0") << endl;
return 0;
}
示例4: main
int main(void){
int a[] = {5,6,7,8,4,3,2,1};
Solution sol;
for(int i = 0; i < 8; i++){
sol.add(a[i]);
cout << sol.get_median() << endl;
getchar();
}
}
示例5: main
int main(int argc, char* argv[]){
Solution sol;
cout << sol.add("99", "2") << endl;
cout << sol.multiply("999999", "1002") << endl;
}