-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5806fd
commit a5aef1b
Showing
6 changed files
with
86 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#### Exercise 1 | ||
|
||
Write a program that reads the user name as an input and outputs a welcome message. | ||
|
||
#### Exercise 2 | ||
|
||
Write a program that reads the user input and outputs the following pieces of information about it: | ||
|
||
- Does it have only space? | ||
|
||
- Is it a number? | ||
|
||
- Is it alphabetic? | ||
|
||
- Is it alphanumeric? | ||
|
||
- Is it in uppercase? | ||
|
||
- Is it in lowercase? | ||
|
||
- Is it capitalized? | ||
|
||
#### Exercise 3 | ||
|
||
Write a program that reads the user input number and outputs a message saying its antecedent and successor. | ||
|
||
#### Exercise 4 | ||
|
||
Write a program that reads the user input number and outputs a message saying its double, triple, and square root with at most two decimal digits. | ||
|
||
#### Exercise 5 | ||
|
||
Write a program that receives two student grades and outputs the average grade. | ||
|
||
#### Exercise 6 | ||
|
||
Write a program that receives a distance value in meters and outputs a message saying its corresponding values in km, hm, dam, dm, cm, and mm. | ||
|
||
#### Exercise 7 | ||
|
||
Write a program that receives a number and gives its multiplication table like this: | ||
|
||
------------ | ||
3 x 1 = 3 | ||
3 x 2 = 6 | ||
3 x 3 = 9 | ||
3 x 4 = 12 | ||
3 x 5 = 15 | ||
3 x 6 = 18 | ||
3 x 7 = 21 | ||
3 x 8 = 24 | ||
3 x 9 = 27 | ||
3 x 10 = 30 | ||
------------ | ||
|
||
#### Exercise 8 | ||
|
||
#### Exercise 9 | ||
|
||
|