From 1b0d935754549d175d2bad3d5eb5dc541bd7a0d4 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 7 Jul 2014 16:45:58 +0530 Subject: removing unwanted files --- _Programming_With_C/chapter5.ipynb | 96 -------------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 _Programming_With_C/chapter5.ipynb (limited to '_Programming_With_C/chapter5.ipynb') diff --git a/_Programming_With_C/chapter5.ipynb b/_Programming_With_C/chapter5.ipynb deleted file mode 100644 index ea09f2bd..00000000 --- a/_Programming_With_C/chapter5.ipynb +++ /dev/null @@ -1,96 +0,0 @@ -{ - "metadata": { - "name": "" - }, - "nbformat": 3, - "nbformat_minor": 0, - "worksheets": [ - { - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Preparing And Running A Complete C Program

" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Example 5.2, Page number: 5.4

" - ] - }, - { - "cell_type": "code", - "collapsed": false, - "input": [ - "\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": [ - "

Example 5.4, Page number: 5.7

" - ] - }, - { - "cell_type": "code", - "collapsed": false, - "input": [ - "\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 -- cgit