fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. size_t n;
  6. cin >> n;
  7. double x[n];
  8. for(auto &a: x) cin >> a; // Ввод
  9. for(auto a: x) cout << a << " "; // Вывод
  10. }
Success #stdin #stdout 0s 3432KB
stdin
5
1 2.4 1.23 7.3e-5 0
stdout
1 2.4 1.23 7.3e-05 0