欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2012年西北工业大学机试第一题

程序员文章站 2022-05-15 14:08:18
...

2012年西北工业大学机试第一题2012年西北工业大学机试第一题

#include<iostream>
#include<vector>
using namespace std;
int main(){
	
	int n,temp,sum = 0;
	cin>>n;
	vector<int>v;
	for(int i = 0;i < n;i++){
		cin>>temp;
		v.push_back(temp);
	}
	for(int i = 0;i < n;i++){
		cin>>temp;
		sum += temp*v[i];//省去判断直接相乘 
	}
	cout<<sum<<endl;
	return 0;
}