Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9244815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T09:07:31+00:00 2026-06-18T09:07:31+00:00

Why does gets always add a new line when the user inputs the number

  • 0

Why does gets always add a new line when the user inputs the number of boxes?

I want the next print statement to be shown on the same line as the input.

    print "Enter the number of boxes: "
    boxes = gets.chomp
    print "Enter number of columns to print the boxes in: "
    columns = gets.chomp

I want output to look like this:

Enter the number of boxes: 47 Enter number of columns to print the boxes in: 4

I don’t want to begin a new line until after the second input is received.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T09:07:32+00:00Added an answer on June 18, 2026 at 9:07 am

    In windows you can do it like this, otherwise you would need a similar read_char method that works in your OS

    def read_char #only on windows
      require "Win32API"
      Win32API.new("crtdll", "_getch", [], "L").Call
    end
    
    def get_number
      number, inp = "", 0
      while inp != 13
        inp = read_char
        if "0123456789"[inp.chr]
          number += inp.chr
          print inp.chr  
        end
      end
      number
    end
    
    print "Enter the number of boxes: "
    boxes = get_number
    print " Enter number of columns to print the boxes in: "
    columns = get_number
    puts ""
    
    puts "boxes: #{boxes}"
    puts "columns: #{columns}"
    
    # gives
    # Enter the number of boxes: 5 Enter number of columns to print the boxes in: 6
    # boxes: 5
    # columns: 6
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to make a makefile which does the following: gets source files
does anyone know how purevolume.com gets their rounded corners? its very interesting and cross
I wanted to know , How exactly does an Objective C object gets created.
I'm building a GWT application and am trying to dynamically add facebook comment boxes
This does not work and I need it badly $('some+multi+word+string').replace('+', ' ' ); always
This is the VBA code im using to try add a new sheet to
I've been tasked to add some Doubleclick Spotlight tags to a number of pages
How could I always convert the property username to lower case? This does not
Does anyone know if there is a way to generate different code in the
Does COUNT(*) have any significant impact for MySQL performance if query already has GROUP

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.