Skip to content

Commit 32f0520

Browse files
authored
Update app8.cpp
1 parent 0bb716b commit 32f0520

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

source/repos/Project8/app8.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
note: To halt the syste simply type
1616
a number different of 1 or 2:)
1717
18-
author: j3
18+
Author: Borin (https://br.linkedin.com/in/borinvini)
19+
Edited by j3
1920
date: jun, 13/2020
2021
*/
2122
#include<stdio.h>
@@ -60,8 +61,8 @@ int main()
6061
result = sub(x, y);
6162
printf("x minus y is: %.2f\n", result);
6263
break;
63-
default:
64-
printf("Operation not supported!");
64+
default:
65+
printf("Operation not supported!");
6566
break;
6667
}
6768
printf("Please, enter the first number: ");
@@ -97,4 +98,4 @@ float add(float a, float b)
9798
float sub(float a, float b)
9899
{
99100
return a - b;
100-
}
101+
}

0 commit comments

Comments
 (0)