Yurttas/PL/OOL/Cplusplus/F/06/01/io 03.cpp

 1/*
 2   Copyright(C) 1998
 3   All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
 4
 5   Permission to use, copy, modify, and distribute this
 6   software and its documentation for EDUCATIONAL purposes
 7   and without fee is hereby granted provided that this
 8   copyright notice appears in all copies.
 9
10   date   : January 1, 1998.
11   authorĀ : Salih Yurttas.
12
13   io_03.cpp
14*/
15
16
17#include <iostream>
18
19using namespace std;
20
21const double D_K=16.0;
22
23const int N=4;
24
25int main(int argc, char* argv[]) {
26
27  double d_a[N];
28
29  int i=16;
30
31  cout << endl;
32  cout << "1--";
33  cout << endl;
34
35  cout << i << endl;
36
37  cout << endl;
38  cout << "2--";
39  cout << endl;
40
41  cout.setf(ios::showpoint);
42
43  for(int i=0; i<N; ++i) {
44    d_a[i] = D_K;
45    cout << d_a[i] << endl;
46  }
47
48}