清华大学机试 特殊乘法 Easy
Posted songlinxuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清华大学机试 特殊乘法 Easy相关的知识,希望对你有一定的参考价值。
基本思想:
无;
关键点:
无;
#include<iostream> #include<vector> #include<string> using namespace std; int charge(string a, string b) { int cnt=0; for (int i = 0; i < a.size(); i++) { for (int j = 0; j < b.size(); j++) { cnt += int(a[i] - ‘0‘)*int(b[j] - ‘0‘); } } return cnt; } int main() { string n,m; while (cin >> n >> m) { cout << charge(n, m)<<endl; } return 0; }
以上是关于清华大学机试 特殊乘法 Easy的主要内容,如果未能解决你的问题,请参考以下文章