Sudhir sharma has Published 1149 Articles

Biggest Reuleaux Triangle within a Square which is inscribed within a Right angle Triangle in C?

sudhir sharma

sudhir sharma

Updated on 07-Oct-2019 07:09:13

110 Views

A Reuleaux triangle is a shape formed from the intersection of three circular disks, each having its center on the boundary of the other two. Its boundary is a curve of constant width, the simplest and best known such curve other than the circle itself. Constant width means that the ... Read More

Biggest Reuleaux Triangle inscribed within a square which is inscribed within an ellipse in C?

sudhir sharma

sudhir sharma

Updated on 07-Oct-2019 07:06:14

139 Views

A Reuleaux triangle is a shape formed from the intersection of three circular disks, each having its center on the boundary of the other two. Its boundary is a curve of constant width, the simplest and best known such curve other than the circle itself. Constant width means that the ... Read More

Biggest Reuleaux Triangle inscribed within a square which is inscribed within a hexagon in C?

sudhir sharma

sudhir sharma

Updated on 07-Oct-2019 07:03:02

131 Views

A Reuleaux triangle is a shape formed from the intersection of three circular disks, each having its center on the boundary of the other two. Its boundary is a curve of constant width, the simplest and best known such curve other than the circle itself. Constant width means that the ... Read More

Biggest Reuleaux Triangle inscribed within a Square inscribed in an equilateral triangle in C?

sudhir sharma

sudhir sharma

Updated on 04-Oct-2019 11:05:58

143 Views

A Reuleaux triangle is a shape formed from the intersection of three circular disks, each having its center on the boundary of the other two. Its boundary is a curve of constant width, the simplest and best known such curve other than the circle itself. Constant width means that the ... Read More

Biggest Reuleaux Triangle inscribed within a square inscribed in a semicircle in C?

sudhir sharma

sudhir sharma

Updated on 04-Oct-2019 08:33:33

147 Views

A Reuleaux triangle is a shape formed by using intersection of three circle, in such a way that each having its center on the boundary of the other two circles. Its boundary is a curve of constant width, the simplest and best known such curve other than the circle itself. ... Read More

Betrothed numbers in C?

sudhir sharma

sudhir sharma

Updated on 04-Oct-2019 08:30:08

2K+ Views

Betrothed numbers are pair of two numbers in a way that the sum of their divisors when added by is equal to another number.For example (a,  b) are a pair of betrothed numbers if s(a) = b + 1 and s(b) = a + 1, where s(b) is the aliquot sum of b: an equivalent condition is that σ(a) = σ(b) = a + b + 1, where ... Read More

C++ program for the Array Index with same count of even or odd numbers on both sides?

sudhir sharma

sudhir sharma

Updated on 04-Oct-2019 08:27:33

337 Views

Finding the array index with the same count of even or odd number is a number that has equal number of either numbers or odd number on both sides of it i.e. no.s at left = no.s right.Here, we need a few definitions that are related to the concept, Array ... Read More

Array elements with prime frequencies in C++?

sudhir sharma

sudhir sharma

Updated on 04-Oct-2019 08:22:18

260 Views

Array is a container of elements of same data type.Prime Frequencies means that the number of occurrence of the element of the array is a prime number.So, based on these definitions the problem to find array elements with prime frequencies. We are given a string of array. We have to ... Read More

Array elements that appear more than once in C?

sudhir sharma

sudhir sharma

Updated on 04-Oct-2019 08:13:33

1K+ Views

Array is a container of elements of Same data types length needs to be defined beforehand. And an element can appear in any order and any number of times in an array. so in this program we will find elements that appear more than once in an array.Problem description − ... Read More

Array element with minimum sum of absolute differences in C++?

sudhir sharma

sudhir sharma

Updated on 04-Oct-2019 08:08:14

393 Views

This program is to find minimum absolute difference of the array given we have an array which have distinct element.To learn this concept better let’s rebrush the things that required, Array is a container of elements of same data type. The length of an array needs to be predefined.absolute difference ... Read More

Advertisements