[Go to site: main page, start]

0% found this document useful (0 votes)
6 views1 page

Java Programming Exercises and Patterns

The document outlines several programming tasks in Java, including finding the sum of Fibonacci series numbers, printing a pyramid number pattern, and creating various patterns. It also includes a program to print the ASCII value of a character and another to list numbers between 1 and 100 that are divisible by 3, 5, or both. These tasks serve as exercises for practicing Java programming skills.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Java Programming Exercises and Patterns

The document outlines several programming tasks in Java, including finding the sum of Fibonacci series numbers, printing a pyramid number pattern, and creating various patterns. It also includes a program to print the ASCII value of a character and another to list numbers between 1 and 100 that are divisible by 3, 5, or both. These tasks serve as exercises for practicing Java programming skills.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

1.

Write a Program to Find Sum of Fibonacci Series Number


2. Write a Program to Print Pyramid Number Pattern in
Java.

*
***
*****
*******

3. Java Program to Print Patterns.


*
***
*****
*******
*********
***********
*********
*******
*****
***
*

[Link] a Java program to print the ASCII value of a given character.

[Link] a Java program to print numbers between 1 and 100 divisible by 3,


5 and both.

You might also like