R Program to print the sum of the first 10 natural numbers


In this program, You will learn how to print the sum of the first 10 natural numbers in R.


1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10

Example: How to print the sum of the first 10 natural numbers in R

sum = 0
for (num in 1:10)  {
  sum = sum + num
}

print(paste("Sum of first 10 natural numbers is :", sum))

Output:

[1] "Sum of first 10 natural numbers is : 55"