i have java assignment >>
i need any one to help me to solve it >>
this is my e-mail >>> [email removed]
...............................
Java Assignment 3
1.Use nested loops that print the following pattern:-
A) 1
12
123
1234
12345
123456
2.Write a program to compute the sum and product of all odd integers from 1 to 19.
3.write a program which writes the integers from 1 to 50, replacing every multiple of (5) by the word "OK" and every integer divisible by (11) by the word "FINE"
Ex.
1 2 3 4 OK 6 7 8 9 OK FINE 12 13 14 OK….....
4.Write a program that read a list of numbers from the user, storing them in one dimension array, then prints them in the opposites order.
Example
Input :- 5 8 7 1 12 10 78 14 5 32 15
Output:- 15 32 5 14 78 10 12 1 7 8 5
5.Write a program to find the positions and number of zeros in two dimension array of integer.
6.Write a program that reads a student’s test scores in the range of 50-100. It should then determine the number of students having scores in each of the following ranges: 50-59, 60-69, 70-79, 80-89, 90-100.
Note: use one dimension array to store the students score.