Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
ruby-training
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Đường Sỹ Hoàng
ruby-training
Commits
4dffbb49
Commit
4dffbb49
authored
Oct 31, 2019
by
Đường Sỹ Hoàng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Numbers And Math
parent
a71a757c
Pipeline
#93
canceled with stages
in 0 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
exercise3.rb
+23
-0
No files found.
exercise3.rb
0 → 100644
View file @
4dffbb49
puts
"I will now count my chickens:"
puts
"Hens
#{
25
+
30.0
/
6
}
"
puts
"Roostees
#{
100
.
to_f
-
25
*
3
%
4
}
"
puts
"Now i will count the eggs:"
puts
(
3
+
2
+
1
-
5
+
4
%
2
-
1
/
4
+
6
).
to_f
puts
"Is it true that 3+2>5-7?"
puts
3
+
2
>
5
-
7
puts
"What is 3+2?
#{
3
+
2
}
"
puts
"What is 5-7?
#{
5
-
7
}
"
puts
"Oh, that's why it's false."
puts
"How about some more."
puts
"Is it greater?
#{
5
<-
2
}
"
puts
"Is it greater or equal?
#{
5
>=-
2
}
"
puts
"Is it less or equal?
#{
5
>=-
2
}
"
puts
"Is it less or equal
#{
5
<=
-
2
}
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment