Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
19
Task/String-comparison/R/string-comparison-1.r
Normal file
19
Task/String-comparison/R/string-comparison-1.r
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
compare <- function(a, b)
|
||||
{
|
||||
cat(paste(a, "is of type", class(a), "and", b, "is of type", class(b), "\n"))
|
||||
|
||||
if (a < b) cat(paste(a, "is strictly less than", b, "\n"))
|
||||
if (a <= b) cat(paste(a, "is less than or equal to", b, "\n"))
|
||||
if (a > b) cat(paste(a, "is strictly greater than", b, "\n"))
|
||||
if (a >= b) cat(paste(a, "is greater than or equal to", b, "\n"))
|
||||
if (a == b) cat(paste(a, "is equal to", b, "\n"))
|
||||
if (a != b) cat(paste(a, "is not equal to", b, "\n"))
|
||||
|
||||
invisible()
|
||||
}
|
||||
|
||||
compare('YUP', 'YUP')
|
||||
compare('BALL', 'BELL')
|
||||
compare('24', '123')
|
||||
compare(24, 123)
|
||||
compare(5.0, 5)
|
||||
Loading…
Add table
Add a link
Reference in a new issue