Yurttas/PL/OOL/Cplusplus/F/05/04/00/02/a 32.cpp

From ZCubes Wiki
Revision as of 22:44, 6 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="cpp" line start="1" enclose="div">/* Copyright(C) 1998 All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc.. Perm...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 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   a_32.cpp
14*/
15
16
17#include <iostream>
18
19using namespace std;
20
21#include "f_02.cpp"
22
23int main(int argc, char* argv[]) {
24
25  int a,
26      k;
27
28  cout << "-> a : ";
29  cin >> a;
30
31  cout << "-> k : ";
32  cin >> k;
33
34  cout << endl;
35  cout << "a = " << a;
36  cout << endl;
37  cout << "k = " << k;
38  cout << endl;
39  cout << endl;
40
41  f_02(a,
42       k);
43
44  cout << endl;
45  cout << "a = " << a;
46  cout << endl;
47  cout << "k = " << k;
48  cout << endl;
49
50  cout << endl;
51
52  double b,
53         l;
54
55  cout << "-> b : ";
56  cin >> b;
57
58  cout << "-> l : ";
59  cin >> l;
60
61  cout << endl;
62  cout << "b = " << b;
63  cout << endl;
64  cout << "l = " << l;
65  cout << endl;
66  cout << endl;
67
68  f_02(b,
69       l);
70
71  cout << endl;
72  cout << "b = " << b;
73  cout << endl;
74  cout << "l = " << l;
75  cout << endl;
76
77}