mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
18 lines
219 B
C++
18 lines
219 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
using namespace std;
|
|
int main(){
|
|
long long a,b[1000],c;
|
|
cin >>a;
|
|
for(int i=0;i<a;i++){
|
|
cin >>b[i];
|
|
}
|
|
cin >>c;
|
|
for(int i=0;i<a;i++){
|
|
cout <<b[i]*c<<" ";
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|