Write a R program to create a sequence of numbers from 20 to 50 and find the mean of numbers from 20 to 60 and sum of numbers from 51 to 91
- برمجة R
- 2021-09-04
- adonis77j
الأجوبة
print("Sequence of numbers from 20 to 50:")
print(seq(20,50))
print("Mean of numbers from 20 to 60:")
print(mean(20:60))
print("Sum of numbers from 51 to 91:")
print(sum(51:91))
Sample Output:
[1] "Sequence of numbers from 20 to 50:" [1] 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 [26] 45 46 47 48 49 50 [1] "Mean of numbers from 20 to 60:" [1] 40 [1] "Sum of numbers from 51 to 91:" [1] 2911
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة