Harsh Raj

Results 172 issues of Harsh Raj

### Description Write a C++ program to find surface area of a cone Surface area of cone = π × `Radius` × (`Radius` + `Slant Height`) ``` Radius : 2...

good first issue
C++

### Description Write a C# program to find surface area of a cone Surface area of cone = π × `Radius` × (`Radius` + `Slant Height`) ``` Radius : 2...

good first issue
C#

### Description Write a C program to find surface area of a cone Surface area of cone = π × `Radius` × (`Radius` + `Slant Height`) ``` Radius : 2...

good first issue
C

### Description Write a program to find surface area of a cone Surface area of cone = π × `Radius` × (`Radius` + `Slant Height`) ``` Radius : 2 Slant...

auto-track
tweet-it
tweet-confirm

### Description Write a JavaScript program to print diamond pattern ``` Input : 5 Output : * *** ***** ******* ********* ******* ***** *** * ``` How to contribute -...

good first issue
JavaScript

### Description Write a GO program to find the trace of a matrix The trace of a square matrix is the sum of the elements on the main diagonal (from...

good first issue
GO

### Description Write a program to convert days to weeks 1 week = 7 days ``` Input : 35 Output : 5 ``` ### Tracking Issues - [ ] #4382...

auto-track
tweet-it
tweet-confirm

### Description Write a program to convert time from 24-hour to 12-hour format ``` Input : 12:05:45 Output : 12:05:45PM ``` ### Tracking Issues - [ ] #4287 - [...

auto-track
tweet-it
tweet-confirm

### Description Write a program to check lower case Check if given character is lower case (a-z). ``` Input : a Output : Lower Case ``` ### Tracking Issues -...

auto-track
tweet-it
tweet-confirm

### Description Write a Kotlin 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,...

good first issue
Kotlin