summaryrefslogtreecommitdiff
path: root/_Programming_With_C/chapter5.ipynb
blob: b76ef8010a256dbf9dbde9a636d07b38e44f6dc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
 "metadata": {
  "name": ""
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "<h1>Preparing And Running A Complete C Program<h1>"
     ]
    },
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "<h3>Example 5.2, Page number: 5.4<h3>"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Compound Interest\n",
      "\n",
      "import math\n",
      "\n",
      "p,r,n=10000,10,3\n",
      "i=r/100.0\n",
      "\n",
      "f=p*math.pow(1+i,n)\n",
      "print \"The final value (F) is: %.2f\" %f\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The final value (F) is: 13310.00\n"
       ]
      }
     ],
     "prompt_number": 2
    },
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "<h3>Example 5.4, Page number: 5.7<h3>"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Real Rppts of a Quadratic Equation\n",
      "\n",
      "import math\n",
      "\n",
      "a,b,c=2.0,5.0,3.0\n",
      "d=math.sqrt(b*b-(4*a*c))\n",
      "x1=(-b+d)/(2*a)\n",
      "x2=(-b-d)/(2*a)\n",
      "\n",
      "print \"x1 = %e   x2 = %e\" %(x1,x2)\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "x1 = -1.000000e+00   x2 = -1.500000e+00\n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [],
     "language": "python",
     "metadata": {},
     "outputs": []
    }
   ],
   "metadata": {}
  }
 ]
}