Harsh Raj
Harsh Raj
### Description Write a program to convert miles to inches 1 mile = 63360 inches ``` Input : 5 Output : 316800 ``` ### Tracking Issues - [x] #3091 -...
### Description Write a C# program to check alphabet Check that the given character is an alphabet or not (a-z, A-Z). ``` Input : a Output : Alphabet ``` How...
### Description Write a C program to print numbers from n to 1 without using a loop ``` Input : 5 Output : 5 4 3 2 1 ``` How...
### Description Write a C program to find surface area of a cuboid Surface area of cuboid = 2 × (`Length` × `Width` + `Length` × `Height` + `Width` ×...
### Description Write a C# program to convert hours to minutes 1 hour = 60 minutes ``` Input : 5 Output : 300 ``` How to contribute - Save the...
### Description Write a TypeScript program to find average of numbers by recursion Average of numbers is the sum of all numbers divided by the number of numbers. For example,...
### Description Write a Kotlin program to convert hours to minutes 1 hour = 60 minutes ``` Input : 5 Output : 300 ``` How to contribute - Save the...
### Description Write a JavaScript program to convert a string to an integer ``` Input : "123" Output : 123 ``` How to contribute - Save the solution in `program/ConvertAStringToAnInteger.js`...
### Description Write a TypeScript program to convert string to pascalcase Pascalcase is a style of writing in which the first letter of each word is capitalized. ``` Input :...
### Description Write a Haskell program to print diamond pattern ``` Input : 5 Output : * *** ***** ******* ********* ******* ***** *** * ``` How to contribute -...