Spare Topic - Chester GISTs

Submitted by sylvia.wong@up… on Tue, 11/23/2021 - 17:13
Sub Topics

If you add code using regular paragraphs it will look like this…

# Python Program to find the area of triangle

a = 5
b = 6
c = 7

# Uncomment below to take inputs from the user
# a = float(input('Enter first side: '))
# b = float(input('Enter second side: '))
# c = float(input('Enter third side: '))

# calculate the semi-perimeter
s = (a + b + c) / 2

# calculate the area
area = (s*(s-a)*(s-b)*(s-c)) ** 0.5
print('The area of the triangle is %0.2f' %area)

 

If you use the <code> and <pre> tags the snippets are encapsulated and will be displayed in a monospaced font and indenting will be preserved. see the examples below.

Python



# Python Program to find the area of triangle

a = 5
b = 6
c = 7

# Uncomment below to take inputs from the user
# a = float(input('Enter first side: '))
# b = float(input('Enter second side: '))
# c = float(input('Enter third side: '))

# calculate the semi-perimeter
s = (a + b + c) / 2

# calculate the area
area = (s*(s-a)*(s-b)*(s-c)) ** 0.5
print('The area of the triangle is %0.2f' %area)


 

JavaScript



const baseValue = prompt('Enter the base of a triangle: ');
const heightValue = prompt('Enter the height of a triangle: ');

// calculate the area
const areaValue = (baseValue * heightValue) / 2;

console.log(
  `The area of the triangle is ${areaValue}`
);

Using a GitHub GIST, the snippets will display with syntax highlighting and line numbering.

 

 
Module Linking
Is Study Guide?
Off
Is Assessment Consultation?
Off