Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaa3930 commit 282d85eCopy full SHA for 282d85e
functions/celsius_to_kelvin.R
@@ -6,5 +6,6 @@ celsius_to_kelvin <- function(temp_C) {
6
#'
7
#' The equation for conversion is : T_K = TC + 273
8
9
- return (temp_C)
10
-}
+ temp_K <- temp_C + 273
+ return (temp_K)
11
+}
0 commit comments