Untitled
unknown
plain_text
2 years ago
301 B
5
Indexable
#include <iostream> #include <windows.h> using namespace std; int main() { int mas[10]; int a = 0; for (int i = 0; i < 10; i++) { cin >> mas[i]; } cin >> a; for (int i = 0; i < 10; i++) { cout << mas[i] * a << " "; } return 0; }
Editor is loading...
Leave a Comment