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_01.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 cout << endl;
30 cout << "1--";
31 cout << endl;
32
33 for(int i=0; i<N; ++i) {
34 d_a[i] = D_K;
35 cout << d_a[i] << endl;
36 }
37
38 cout << endl;
39 cout << "2--";
40 cout << endl;
41
42 for(int i=0; i<N; ++i)
43 cout << (double) d_a[i] << endl;
44
45 cout << endl;
46 cout << "3--";
47 cout << endl;
48
49 for(int i=0; i<N; ++i)
50 cout << double(d_a[i]) << endl;
51
52}