summaryrefslogtreecommitdiff
path: root/Fundamental_of_Computing_and_Programming_in_C/Chapter03.ipynb
blob: 34a44d607cf93795ea9a7785773fa8f07e4acdf8 (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
{
 "metadata": {
  "name": "",
  "signature": "sha256:92464c4be2e3e810ccda180a900c5ec8bb15a9537c93387b95c317c7709c7b7c"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 03 : Decision Making"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 1, Page No.:4.79"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Program using if with multiple statements\n",
      "\n",
      "\n",
      "#Variable Declaration\n",
      "i=0\n",
      "\n",
      "#User Input\n",
      "\n",
      "i =int(raw_input(\"Give the numbers less than 10\"'\\n'))\n",
      "\n",
      "if i<=10:                  #Checking the given value\n",
      "\n",
      "#Result       \n",
      "    print \"The given value of\", i , \"less than 10\"\n",
      "    "
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "name": "stdout",
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Give the numbers less than 10\n",
        "5\n"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "the given value of 5 less than 10\n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example: 2, Page No.: 4.79"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "##Program for interchange two values using if statement\n",
      "\n",
      "#Variable Declaration\n",
      "\n",
      "a=m=n=0\n",
      "\n",
      "#User Input\n",
      "\n",
      "m=int(raw_input(\"Give the value of m\" '\\t'))\n",
      "n=int(raw_input(\"Give the value of n\" '\\t'))\n",
      "\n",
      "if m>=n :                   #Checking the Given Values\n",
      "    \n",
      "    a=m                     # method for swapping            \n",
      "    m=n\n",
      "    n=a\n",
      "\n",
      "#Result\n",
      "\n",
      "print \"The Swapped Values of m and n are \", m,a"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "name": "stdout",
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Give the value of m\t34\n"
       ]
      },
      {
       "name": "stdout",
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Give the value of n\t28\n"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The Swapped Values of m and n are  28 34\n"
       ]
      }
     ],
     "prompt_number": 2
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example: 3, Page No. 4.81"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#determine the given number is odd or even. \n",
      "\n",
      "#Variable Declaration\n",
      "num=rem=0\n",
      "\n",
      "#User Input\n",
      "num=input(\"Enter the value: \")\n",
      "rem=num%2           \n",
      "if rem==0 :             #Checking condition\n",
      "\n",
      "#Result 1\n",
      "    print \"The given number is Even\"\n",
      "else :\n",
      "    \n",
      "#Result 2\n",
      "    print \"The given number is Odd\"\n",
      "    \n",
      "    "
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "name": "stdout",
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Enter the value: 80\n"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The given number is Even\n"
       ]
      }
     ],
     "prompt_number": 4
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example: 4, Page No.:4.81"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "# Find floating point input using if-else statement\n",
      "\n",
      "#Variable Declaration\n",
      "\n",
      "years=seconds=0.0\n",
      "life=0\n",
      "\n",
      "years=float(raw_input(\"Give your Age in years: \"))\n",
      "life=years\n",
      "if life==0:\n",
      "    print \"The given age is not floating value\"\n",
      "    \n",
      "else :\n",
      "    seconds=\"%f\"%float(years*365*24*60*60)\n",
      "    print \"You have lived for\", seconds, \"seconds\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "name": "stdout",
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Give your Age in years: 24\n"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "You have lived for 756864000.000000 seconds\n"
       ]
      }
     ],
     "prompt_number": 7
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example: 5, Page No. :4.82"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "# find biggest among two numbers \n",
      "\n",
      "#Variable Declaration\n",
      "\n",
      "i=j=big=0\n",
      "i,j=input(\"Give two values: \")\n",
      "\n",
      "big=i\n",
      "\n",
      "if big<j :\n",
      "    big=j\n",
      "    \n",
      "elif i<j :\n",
      "    big=j \n",
      "    \n",
      "else:\n",
      "    big = i\n",
      "\n",
      "print \"Biggest number of two numbers: \",big\n",
      "print \"Biggest of two numbers(using else) is: \",big"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "name": "stdout",
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Give two values: 45,78\n"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Biggest number of two numbers:  78\n",
        "Biggest of two numbers(using else) is:  78\n"
       ]
      }
     ],
     "prompt_number": 11
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example: 6, Page No. : 4.84"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "# Program using nested if....else \n",
      "\n",
      "#Variable Declaration\n",
      "\n",
      "n=0\n",
      "\n",
      "#User Input\n",
      "n=int(raw_input(\"Enter the number\"))\n",
      "\n",
      "if n==15:           #Checking Condition\n",
      "    print \"Play Foot ball\"\n",
      "    \n",
      "elif n==10:\n",
      "    print \"Play Cricket\"\n",
      "\n",
      "else :    \n",
      "    print \"Don't Play\" "
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "name": "stdout",
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Enter the number10\n"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Play Cricket\n"
       ]
      }
     ],
     "prompt_number": 12
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example: 7, Page No. :4.85"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#print the number between 10 and 20\n",
      "\n",
      "#Variable declaration\n",
      "\n",
      "i=0\n",
      "\n",
      "#User Input\n",
      "\n",
      "i=input(\"Enter the number: \")\n",
      "\n",
      "if (i>10) & (i<20):\n",
      "    print \"The given value is in between 10 and 20\"\n",
      "\n",
      "else :\n",
      "    print \"The given value is greater than 20 and less than 10\"    "
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "name": "stdout",
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Enter the number: 15\n"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The given value is in between 10 and 20\n"
       ]
      }
     ],
     "prompt_number": 14
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example: 8, Page No. :4.86"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "# display the types of characterusing if-else statement\n",
      "\n",
      "#User Input\n",
      "\n",
      "chr= raw_input(\"Enter a Single Character: \")\n",
      "\n",
      "if( ((chr>='a') & (chr<='z')) | ((chr>='A') & (chr<='Z'))):\n",
      "    print \"Given charactered is an Alphabetic\"\n",
      "    \n",
      "elif ((chr>='0') & (chr <='9')):\n",
      "    print \"Given Character is a digit\"\n",
      "    \n",
      "else:\n",
      "    print \"Entered Character is a special character\"\n",
      "    "
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "name": "stdout",
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Enter a Single Character: M\n"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Given charactered is an Alphabetic\n"
       ]
      }
     ],
     "prompt_number": 16
    }
   ],
   "metadata": {}
  }
 ]
}