Posts by Ricardo DC Melo Neves • 1 point
2 posts
-
0
votes2
answers33
viewsA: Routine doesn’t work
Hello the colleague is having buffer problems so replace the line where you read the name and put this there: name = new Scanner(System.in). nextLine();
-
0
votes2
answers650
viewsA: Creating files in Haskell
import System.IO main :: IO () main = do dado <- getLine outh <- openFile "saida.txt" WriteMode hPutStr outh (map toUpper dado) hClose outh…