Python - WAP to Print Largest of the 3 Numbers Python - 02 March 10, 2018 This is a Python Source Code to print the Greatest of the 3- Numbers. Code: #!/usr/bin/python3 while True: Num1 = int(input(...Read More
Python - WAP To Print Factorial of a Number in Python - 01 January 14, 2018 This is a program to print the Factorial of any given Number in Python. #!/usr/bin/python3 while True: num = int(input("En...Read More
Shell Scripting : Example of a Simple Function for Addition - 10 December 02, 2017 This is a simple Shell script for Adding 2 Numbers' by calling Function. Program Code: #!/bin/bash #Function definition functi...Read More
Shell Scripting : Mini Calculator with Add, Sub, Mul, & Div Operations - 09 December 02, 2017 This is a Mini Calculator to perform operations such as Addition, Subtraction, Multiplication, and Division, operation's. Progr...Read More
Shell Scripting : To Print the Arguments Passed along with the name of Script - 08 December 02, 2017 This Shell Script prints the Command line Arguments passed, along with the name of Script Program Code: #!/bin/bash #This is Program ...Read More