summaryrefslogtreecommitdiff
path: root/_Programming_With_C/chapter5.ipynb
diff options
context:
space:
mode:
Diffstat (limited to '_Programming_With_C/chapter5.ipynb')
-rw-r--r--_Programming_With_C/chapter5.ipynb98
1 files changed, 98 insertions, 0 deletions
diff --git a/_Programming_With_C/chapter5.ipynb b/_Programming_With_C/chapter5.ipynb
new file mode 100644
index 00000000..b76ef801
--- /dev/null
+++ b/_Programming_With_C/chapter5.ipynb
@@ -0,0 +1,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": {}
+ }
+ ]
+} \ No newline at end of file