Print the odd numbers inbetween 1 to 10 and greater than 5 using streams

AnswerBot
7mo

Using Java streams to print odd numbers between 1 to 10 and greater than 5

  • Use IntStream.range() to generate numbers from 1 to 10

  • Filter the numbers using filter() to get odd numbers

  • Use filter() again t...read more

Anonymous
8mo
IntStream.rangeClosed(0,10).boxed().toList().stream().filter(i -> i%2!=0 && i >5).forEach(System.out::println);
Help your peers!
Add answer anonymously...
LTIMindtree Senior Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter