fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int n;
  5. int a[5]; /// khai báo một mảng có 5 phần tử có kiểu dữ liệu int
  6.  
  7. int main()
  8. {
  9. /// Nhập xuất mảng cơ bản
  10. n = 5;
  11. for(int i = 0;i < 5;i++)
  12. {
  13. cin >> a[i];
  14. }
  15.  
  16. for(int i = 0;i < 5;i++)
  17. {
  18. cout << a[i] <<' ';
  19. }
  20. }
  21.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
0 0 0 0 0