You are on page 1of 7

PROGRAM No.

10

AIM:Write a program to create a customized exception and also make use of all the five
exception keywords.

SOURCE CODE:

import java.util.Scanner;

class InvalidAgeException extends Exception

public InvalidAgeException (String str)

super(str);

class Main

static void validate (int age) throws InvalidAgeException{

if(age < 18){

throw new InvalidAgeException("age is not valid to vote");

else {

System.out.println("welcome to vote");

}
public static void main(String args[])

Scanner s= new Scanner(System.in);

System.out.println("\nEnter the age for voting!\n");

int a;

a = s.nextInt();

try

validate(a);

catch (InvalidAgeException ex)

System.out.println("\nCaught the exception");

System.out.println("\nException occured: " + ex);

finally

System.out.println("\nInside the finally keyword!\n");

System.out.println("End of code!\n");

}
OUTPUT:

Aditya Khandelwal
09
IT-A
PROGRAM No. 9

AIM: Write a program to multiply two matrices using 2D array.

SOURCE CODE:

import java.util.Scanner;

class Main

public static void main(String args[])

int m, n, p, q, sum = 0, c, d, k;

Scanner in = new Scanner(System.in);

System.out.println("Enter the number of rows and columns of first matrix");

m = in.nextInt();

n = in.nextInt();

int first[][] = new int[m][n];

System.out.println("Enter elements of first matrix");

for (c = 0; c < m; c++)

for (d = 0; d < n; d++)

first[c][d] = in.nextInt();

System.out.println("Enter the number of rows and columns of second matrix");


p = in.nextInt();

q = in.nextInt();

if (n != p)

System.out.println("The matrices can't be multiplied with each other.");

else

int second[][] = new int[p][q];

int multiply[][] = new int[m][q];

System.out.println("Enter elements of second matrix");

for (c = 0; c < p; c++)

for (d = 0; d < q; d++)

second[c][d] = in.nextInt();

for (c = 0; c < m; c++)

for (d = 0; d < q; d++)

for (k = 0; k < p; k++)

sum = sum + first[c][k]*second[k][d];

}
multiply[c][d] = sum;

sum = 0;

System.out.println("Product of the matrices:\n");

for (c = 0; c < m; c++)

for (d = 0; d < q; d++)

System.out.print(multiply[c][d]+"\t");

System.out.println("\n");

System.out.println("\nAditya Khandelwal 09 IT-A");

}
OUTPUT:

Aditya Khandelwal
09
IT-A

You might also like