R Program to find the largest and smallest digit of a number
In this program, You will learn how to find the largest and smallest digit of a number in R. Number :4567 Largest is: 7 Smallest is = 4 Example: How…
In this program, You will learn how to find the largest and smallest digit of a number in R. Number :4567 Largest is: 7 Smallest is = 4 Example: How…
In this program, You will learn how to find the smallest digit of a number in R. 5234 = 2 2351 = 1 Example: How to find the smallest digit…
In this program, You will learn how to find the largest digit of a number in R. 1234 = 4 2351 = 5 Example: How to find the largest digit…
In this program, You will learn how to find the sum of first and last digit of a number in R. 1234 = 1 + 4 = 5 Example: How…
In this program, You will learn how to find the sum of even and odd digits of a number in R. Even sum is : = 2 + 4 =…
In this program, You will learn how to find the sum of odd digits of a number in R. Sum of odd digits are: 1234 => 1 + 3 =…
In this program, You will learn how to find the sum of even digits of a number in R. Sum of even digits is : 1234 => 2 + 4…
In this program, You will learn how to find the sum of digits of a number in R. Sum of digits is : 123 => 1 + 2 + 3…
In this program, You will learn how to print first n odd numbers in descending order in R. List of odd numbers in descending order's :19, 17, 15, 13, 11,…
In this program, You will learn how to check the square root of a number is prime or not in R. Some list of Prime numbers are: 2, 3, 5,…