Posts

Number Guessing Game

  The fun and easy project “Guess the Number” is a short Java project that allows the user to guess the number generated by the computer & involves the following steps: The system generates a random number from a given range, say 1 to 100. The user is prompted to enter their given number in a displayed dialogue box. The computer then tells if the entered number matches the guesses number or it is higher/lower than the generated number. The game continues under the user guessing the number. You can also incorporate further details as: Limiting the number of attempts. Adding more rounds. Displaying score. Giving points based on the number of attempts. Source Code: package guessinggame; * Java game “Guess a Number” that allows user to guess a random number that has been generated. */ import javax.swing.*; public class GuessingGame {     public static void main (String[] args) {         int computerNumber = ( int ) (Math.random()* 100 + 1 );         int userAnswer = 0 ;

Java Program to find Diagonal difference

 Problem Statement : Given a square matrix, calculate the absolute difference between the sums of its diagonals. For example, the square matrix   is shown below: 1 2 3 4 5 6 9 8 9 The left-to-right diagonal =  . The right to left diagonal =  . Their absolute difference is  . Return int : the absolute diagonal difference Input Format The first line contains a single integer,  , the number of rows and columns in the square matrix  . Each of the next   lines describes a row,  , and consists of   space-separated integers  . Output Format Return the absolute difference between the sums of the matrix's two diagonals as a single integer. Sample Input 11 2 4 4 5 6 10 8 -12 Sample Output 15 Explanation The primary diagonal is: 11 5 -12 Sum across the primary diagonal: 11 + 5 - 12 = 4 The secondary diagonal is: 4 5 10 Sum across the secondary diagonal: 4 + 5 + 10 = 19 Difference: |4 - 19| = 15 Program : public class DiagonalDifference { public static void main(String[] ar

Java program to find Plus Minus

  Problem statement : Given an array of integers, calculate the ratios of its elements that are   positive ,   negative , and   zero . Print the decimal value of each fraction on a new line with     places after the decimal. Note:  This challenge introduces precision problems. The test cases are scaled to six decimal places, though answers with absolute error of up to   are acceptable. Example There are   elements, two positive, two negative and one zero. Their ratios are  ,   and  . Results are printed as: 0.400000 0.400000 0.200000 Print Print the ratios of positive, negative and zero values in the array. Each value should be printed on a separate line with   digits after the decimal. The function should not return a value. Input Format The first line contains an integer,  , the size of the array. The second line contains   space-separated integers that describe  . Sample Input 6 -4 3 -9 0 4 1 Sample Output 0.500000 0.333333 0.166667 Explanation There are   positive numbers,