02 Jan R Programs to Add, Sub, Mul, and Div Admin | R Examples, R Programs to Add | R Programming | 0 Input: 2+3 //Add 2-3 //Sub 2*3 //Mul 2/3 //Div 2+2+3*4-4/3 // Add, Mul, Sub, Div Output: 5 [1] -1 [1] 6 [1] 0.6666667 [1] 14.66667 (Or) With input variable: x=6 y=2 x + y x-y x*y x/y Output: 8 4 12 3 Related posts: Find factors using R Programming Language Find sum of natural numbers without/with formula using R Programming Languge Find the maximum and minimum number in R Programming Language Find the position of minimum and maximum of value in R Programming Language Multiplication Table in R Programming Language Sort a vector in R Programming Language Write a R Program to Find GCD Write a R Program to Find LCM