forked from haonlywan/CodeHS-Java-APCSA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.1.8 Heating Up
More file actions
21 lines (21 loc) · 1008 Bytes
/
1.1.8 Heating Up
File metadata and controls
21 lines (21 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public class MakingPopcorn
{
public static void main(String[] args)
{
System.out.println("3 Ways to Regulate Temperature");
System.out.print("Each of the 3 methods below is an example of three of the ");
System.out.println("ways the human body regulates its temperature.");
System.out.println("");
System.out.println("Conduction");
System.out.print("A type of heat transfer due to contact with another");
System.out.println(" surface, such as sitting on a cold metal chair.");
System.out.println("");
System.out.println("Convection");
System.out.print("A type of heat transfer occuring through air or water, ");
System.out.println("such as wading into a cool lake.");
System.out.println("");
System.out.println("Radiation");
System.out.print("A type of heat transfer from infrared rays, such as feeling ");
System.out.println("warmer on hot pavement or a hot sidewalk.");
}
}