0% found this document useful (0 votes)
11 views2 pages

Basic Arithmetic and Variable Operations

The document contains a series of basic arithmetic operations including addition, subtraction, multiplication, division, exponentiation, and modulo. It also demonstrates variable assignment and printing in a programming context, along with checking the class of different variable types. Overall, it serves as a simple tutorial on performing calculations and managing variables.

Uploaded by

Việt Tùng
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views2 pages

Basic Arithmetic and Variable Operations

The document contains a series of basic arithmetic operations including addition, subtraction, multiplication, division, exponentiation, and modulo. It also demonstrates variable assignment and printing in a programming context, along with checking the class of different variable types. Overall, it serves as a simple tutorial on performing calculations and managing variables.

Uploaded by

Việt Tùng
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

# Calculate 3 + 4

3+4

# Calculate 6 + 12
6 + 12

# An addition
5+5

# A subtraction
5-5

# A multiplication
3*5

# A division
(5 + 5) / 2

# Exponentiation
2^5

# Modulo
28%%6

# Assign the value 42 to x


x <- 42

# Print out the value of the variable x


x

# Assign the value 5 to the variable my_apples


my_apples <- 5

# Print out the value of the variable my_apples


my_apples

# Assign a value to the variables my_apples and my_oranges


my_apples <- 5
my_oranges <- 6

# Add these two variables together


my_apples + my_oranges

# Create the variable my_fruit


my_fruit <- my_apples + my_oranges
my_fruit
# Change my_numeric to be 42
my_numeric <- 42

# Change my_character to be "universe"


my_character <- "universe"

# Change my_logical to be FALSE


my_logical <- FALSE

# Check class of my_numeric


class(my_numeric)

# Check class of my_character


class(my_character)

# Check class of my_logical


class(my_logical)

You might also like