From f4e6af9d78d4f9543a07e6ac6a4dfc18801615e0 Mon Sep 17 00:00:00 2001 From: VickneshYo Date: Thu, 13 Oct 2022 02:00:40 +0530 Subject: [PATCH 1/3] Added soting alphabet --- Python/sortAlphabets.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Python/sortAlphabets.py diff --git a/Python/sortAlphabets.py b/Python/sortAlphabets.py new file mode 100644 index 0000000..2222cbb --- /dev/null +++ b/Python/sortAlphabets.py @@ -0,0 +1,18 @@ +# Program to sort alphabetically the words form a string provided by the user + +my_str = "Hello this Is an Example With cased letters" + +# To take input from the user +#my_str = input("Enter a string: ") + +# breakdown the string into a list of words +words = [word.lower() for word in my_str.split()] + +# sort the list +words.sort() + +# display the sorted words + +print("The sorted words are:") +for word in words: + print(word) \ No newline at end of file From 9ae396646116db49960933f3648f7afb39bb4411 Mon Sep 17 00:00:00 2001 From: VickneshYo Date: Thu, 13 Oct 2022 02:07:03 +0530 Subject: [PATCH 2/3] Added calclulating time difference --- java/calcTimeDifference.java | 56 ++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 java/calcTimeDifference.java diff --git a/java/calcTimeDifference.java b/java/calcTimeDifference.java new file mode 100644 index 0000000..31cfc50 --- /dev/null +++ b/java/calcTimeDifference.java @@ -0,0 +1,56 @@ +public class Time { + + int seconds; + int minutes; + int hours; + + public Time(int hours, int minutes, int seconds) { + this.hours = hours; + this.minutes = minutes; + this.seconds = seconds; + } + + public static void main(String[] args) { + + // create objects of Time class + Time start = new Time(8, 12, 15); + Time stop = new Time(12, 34, 55); + Time diff; + + // call difference method + diff = difference(start, stop); + + System.out.printf("TIME DIFFERENCE: %d:%d:%d - ", start.hours, start.minutes, start.seconds); + System.out.printf("%d:%d:%d ", stop.hours, stop.minutes, stop.seconds); + System.out.printf("= %d:%d:%d\n", diff.hours, diff.minutes, diff.seconds); + } + + public static Time difference(Time start, Time stop) + { + Time diff = new Time(0, 0, 0); + + // if start second is greater + // convert minute of stop into seconds + // and add seconds to stop second + if(start.seconds > stop.seconds){ + --stop.minutes; + stop.seconds += 60; + } + + diff.seconds = stop.seconds - start.seconds; + + // if start minute is greater + // convert stop hour into minutes + // and add minutes to stop minutes + if(start.minutes > stop.minutes){ + --stop.hours; + stop.minutes += 60; + } + + diff.minutes = stop.minutes - start.minutes; + diff.hours = stop.hours - start.hours; + + // return the difference time + return(diff); + } +} \ No newline at end of file From c9e85d8cc14cb803c9f70d5525965b9e2886ab47 Mon Sep 17 00:00:00 2001 From: VickneshYo Date: Thu, 13 Oct 2022 02:12:49 +0530 Subject: [PATCH 3/3] Added calculating power --- C++/calcPower.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 C++/calcPower.cpp diff --git a/C++/calcPower.cpp b/C++/calcPower.cpp new file mode 100644 index 0000000..ba41742 --- /dev/null +++ b/C++/calcPower.cpp @@ -0,0 +1,22 @@ +#include +using namespace std; + +int main() +{ + int exponent; + float base, result = 1; + + cout << "Enter base and exponent respectively: "; + cin >> base >> exponent; + + cout << base << "^" << exponent << " = "; + + while (exponent != 0) { + result *= base; + --exponent; + } + + cout << result; + + return 0; +} \ No newline at end of file