Java Output

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 13

OUTPUT :

The area of the Square is 25.0 sq units


The area of the Rectangle is 132.0 sq units
The area of the Circle is 19.625 sq units
OUTPUT :

java numbersort 9 7 73 2 91
sorted order
***********
2
7
9
73
91
OUTPUT :

Enter the number of rows and columns of first matrix :


3 3
Enter the element of first matrix :
1 2 3
4 5 6
7 8 9
Enter the number of rows and columns of second matrix :
3 3
Enter the element of second matrix :
9 8 7
6 5 4
3 2 1
Product of the matrix :
30 24 18
84 69 54
138 114 90
OUTPUT :
Welcome to PADMAVANI BANK
==============
1.Deposit
2.Withdrawal
3.Balance Enquiry
Enter your choice :
3
Name of the account holder : Arjun
Current balance : 0.0
1.Deposit
2.Withdrawal
3.Balance Enquiry
Enter your choice :
1
Enter the amount to deposit
5000
Amount credited into your account…
1.Deposit
2.Withdrawal
3.Balance Enquiry
Enter your choice :
2
Enter the amount to withdrawal
1000
Amount debited from your account
Your balance after withdraw : 4000.0
1.Deposit
2.Withdrawal
3.Balance Enquiry
Enter your choice :
OUTPUT :
ADD TWO NUMBERS USING PACKAGE
*****************
Enter a and b
3
4
Result : 7
OUTPUT :
Enter Numerator
10
Enter Denominator
2
Result : 5
Enter the element
5
Enter the index in which the element to be stroed
6
Element 5 stored at location 6
Enter Numerator
10
Enter Denominator
0
Exception : java.lang.Arithmetic Exception:/by zero raised
Enter Numerator
10
Enter Denominator
10
Result : 1
Enter the element
12
Enter the index in which the element to be stroed
12
Exception : java.lang.ArrayIndexOut of BoundException: 12 raised
OUTPUT :
Multithreading Example…..
******************
Thread A: 1
Thread A: 2
Thread A: 3
Thread A: 4
Thread A: 5
Exit from A
Thread B: 1
Thread B: 2
Thread B: 3
Thread B: 4
Thread B: 5
Exit from B
OUTPUT :

APPLET:

Enter Name :

Enter Address :

Select your sex : Female


Male
Enter e-mail id :

Enter class : III - BCA

REGISTER Registration Successfully….

Applet Started
OUTPUT :

APPLET VIEWER: DRAWING.CLASS

APPLET:

Roja,002,PV College

Applet Started.
OUTPUT :
Please enter the product code,cost & qty of product:1
P001
200.02
4
Please enter the product code,cost & qty of product:2
P002
200
2
Please enter the product code,cost & qty of product:3
P003
100
1
Please enter the product code,cost & qty of product:4
P004
200.08
2
Please enter the product code,cost & qty of product:5
P005
234
2
Details of all five products
****************
Product code Product cost Qty
********* ********* ******
P001
200.02
4
P002
200
2
P003
100
1
P004
200.08
2
P005
234
2
Total value of all five product:2168.24

You might also like