Skip to content

Commit c812904

Browse files
committed
ex1_3.c : I added F and C to test
1 parent daad333 commit c812904

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

chapterone/ex1_3/ex1_3.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <stdio.h>
44
int main()
55
{
6-
printf("A program print Fahrenheit-Celsius\n");
6+
printf("A program prints Fahrenheit-Celsius\n");
77
int lower,upper,step;
88
int celsius,fahr;
99

@@ -12,7 +12,8 @@ int main()
1212
step = 20;
1313

1414
fahr = lower;
15-
15+
16+
printf("화씨\t 섭씨\n");
1617
while(fahr <= upper)
1718
{
1819
celsius = 5 * (fahr - 32) / 9;

0 commit comments

Comments
 (0)