update: log parser dir to input scanning
This commit is contained in:
20
23-input-scanning/exercises/01-uppercaser/main.go
Normal file
20
23-input-scanning/exercises/01-uppercaser/main.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package main
|
||||
|
||||
// ---------------------------------------------------------
|
||||
// EXERCISE: Uppercaser
|
||||
//
|
||||
// Use a scanner to convert the lines to uppercase, and
|
||||
// print them.
|
||||
//
|
||||
// 1. Feed the shakespeare.txt to your program.
|
||||
//
|
||||
// 2. Scan the input using a new Scanner.
|
||||
//
|
||||
// 3. Print each line.
|
||||
//
|
||||
// EXPECTED OUTPUT
|
||||
// Please run the solution to see the expected output.
|
||||
// ---------------------------------------------------------
|
||||
|
||||
func main() {
|
||||
}
|
12
23-input-scanning/exercises/01-uppercaser/shakespeare.txt
Normal file
12
23-input-scanning/exercises/01-uppercaser/shakespeare.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
come night come romeo come thou day in night
|
||||
for thou wilt lie upon the wings of night
|
||||
whiter than new snow on a raven's back
|
||||
come gentle night come loving black-browed night
|
||||
give me my romeo and when he shall die
|
||||
take him and cut him out in little stars
|
||||
and he will make the face of heaven so fine
|
||||
that all the world will be in love with night
|
||||
and pay no worship to the garish sun
|
||||
oh i have bought the mansion of love
|
||||
but not possessed it and though i am sold
|
||||
not yet enjoyed
|
23
23-input-scanning/exercises/01-uppercaser/solution/main.go
Normal file
23
23-input-scanning/exercises/01-uppercaser/solution/main.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func main() {
|
||||
in := bufio.NewScanner(os.Stdin)
|
||||
|
||||
for in.Scan() {
|
||||
fmt.Println(strings.ToUpper(in.Text()))
|
||||
}
|
||||
}
|
@@ -0,0 +1,12 @@
|
||||
come night come romeo come thou day in night
|
||||
for thou wilt lie upon the wings of night
|
||||
whiter than new snow on a raven's back
|
||||
come gentle night come loving black-browed night
|
||||
give me my romeo and when he shall die
|
||||
take him and cut him out in little stars
|
||||
and he will make the face of heaven so fine
|
||||
that all the world will be in love with night
|
||||
and pay no worship to the garish sun
|
||||
oh i have bought the mansion of love
|
||||
but not possessed it and though i am sold
|
||||
not yet enjoyed
|
Reference in New Issue
Block a user