Assignment 1- Loops, String, Arrays
Assignment 1- Loops, String, Arrays
Number of Tasks: 10
Write a java program that takes 10 inputs from the user in a loop, and displays the sum,
average, minimum and maximum of Only the positive odd numbers from those
numbers. If no such numbers are found, then display the message “No odd positive
numbers found”.
23 Sum = 97
2 Minimum = 21
-4 Maximum = 53
0 Average = 32.333333333333336
8
12
34
-11
53
21
Task 2
Write a java program that takes 2 integer numbers as input and calculates how many
prime numbers exist between them.
Task 3
Write a Java program that takes TWO string inputs (containing exactly one word in each
string) from the user. Concatenate those two strings with a single space in between them.
Generate a number which is the sum of all the letters in that concatenated string
where A = 65, Z = 90, a = 97, and z = 122. Your task is to print that concatenated string
and the number generated from that string.
Task 4
Write a Java program that takes a string input in small letters from the user and prints the
previous alphabet in sequence for each alphabet found in the input.
thecow sgdbnv
abcd zabc
Task 5
Write a Java program that asks the user for the length of an array and then creates an
integer array of that length by taking inputs from the user. Then, reverse the original
array without creating any new array and print it. [In-place reverse]
Task 6
Write a Java program that will take an integer number N from the user and create an
integer array by taking N numbers from the user. Print how many times each number
appears in the array.
N=5 6 - 2 times
6 15 - 2 times
15 14 - 1 times
14
15
6
N=6 -5 - 1 times
-5 10 - 3 times
10 14 - 1 times
14 -7 - 1 times
10
-7
10
Task 7
Write a Java program that asks the user the length of an array (N) then takes N number of
doubles as elements for the array as input. First, remove the consecutive duplicate
elements from the original array to form a new array. Then print the number of elements
removed from the original array.
Task 8
Write a Java program that will take the number of rows and columns from the user and
create a 2D array by taking integer numbers from the user. Print the 2D array. Finally,
create a 1D array by flattening the 2D array.
row = 3 2D Array:
column = 2 14
1 56
4 89
5
6 1D Array:
8 145689
9
Task 9
You are given a square matrix A of size N×N. Check whether the given matrix is an
Identity matrix or not. If it is, then print "Identity matrix" or otherwise print "Not an
Identity matrix". Your program should work for any given 2D Array of size N×N.
[You may need to use the concept of flag and break to solve this problem.]
Identity Matrix is a square matrix with 1’s along the diagonal from upper left to lower
right and 0’s in all other positions.
Task 10
You're tasked with creating a "Treasure Hunt" game, where a player navigates a 2D
grid to find hidden treasure. In this grid:
● The number 7 represents the player’s current position.
● The number 10 represents the treasure.
● The number -1 represents mines that end the game if stepped on.
● The number 0 represents open spaces.
The player begins with 5 moves to reach the treasure. Moving outside the grid or onto a
mine will end the game. Even failing to reach the treasure within 5 moves will result in a
loss. The player can only move straight (UP / DOWN / LEFT / RIGHT).
You have given a skeleton code for this problem. Complete the code to solve the
problem. [Link to code]
Note: Initial grid can be changed. So solve accordingly.
Sample Input Sample Output
Current state:
0 0 10 0 -1
0 -1 0 0 -1
-1 0 -1 0 0
0 -1 0 7 -1
0 -1 0 -1 0
Current state:
0 0 10 0 -1
0 -1 0 0 -1
-1 0 -1 7 0
0 -1 0 0 -1
0 -1 0 -1 0
Current state:
0 0 10 0 -1
0 -1 0 7 -1
-1 0 -1 0 0
0 -1 0 0 -1
0 -1 0 -1 0
Current state:
0 0 10 0 -1
0 -1 7 0 -1
-1 0 -1 0 0
0 -1 0 0 -1
0 -1 0 -1 0
Current state:
0 0 10 0 -1
0 -1 0 0 -1
-1 0 -1 0 0
0 -1 0 7 -1
0 -1 0 -1 0
Current state:
0 0 10 0 -1
0 -1 0 0 -1
-1 0 -1 7 0
0 -1 0 0 -1
0 -1 0 -1 0
Current state:
0 0 10 0 -1
0 -1 0 0 -1
-1 0 -1 0 0
0 -1 0 0 -1
0 -1 7 -1 0
Task 1
Write a Java program that will take an integer number N from the user and create an
integer array by taking N numbers from the user. Then take another number from the user
and create a new array by removing that number from the input array. Finally, print the
new array.
Task 3
Write a program that asks the user how many numbers to take. Then, it takes that many
numbers in an array and prints the median value.
[How to Find the Median Value: http://www.mathsisfun.com/median.html]
Task 4
You are given a matrix A of size M×N. Write a Java program that will take an integer
number k from the user and perform scalar multiplication A = k*A
k=3
Task 5
Write a Java program that will take M and N from the user and create a matrix A of
dimension M×N. Print the matrix A. Then you have to transpose the matrix in a new 2D
array. Finally, print the new array.
The transpose of a matrix is a new matrix that is obtained by exchanging the rows and
columns of the original matrix. Given a matrix A with dimensions M×N, the transpose AT
will have dimensions N×M, where the rows of A become the columns of AT and vice
versa.
M=3 Matrix A
N=3 123
1 456
2 789
3
4 Transpose A
5 147
6 258
7 369
8
9
M=2 Matrix A
N=4 11 2 3 4
11 1 4 9 16
2
3 Transpose A
4 11 1
1 2 4
4 3 9
9 4 16
16