Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.80K
1 Posted Topic
` public class LargeNumberArray { public static void main(String args[]){ int a[]={7,2,8,1,3,5,10,0,12,11}; int large=a[0],second=a[0],third=a[0]; int index=0,index1=0,index2=0; for (int i=0;i { if(a[i]>=large) { large=a[i]; index=i; } } for (int i=0;i { if(a[i]second) { second=a[i]; index1=i; } } for (int i=0;i { if(a[i]third) { third=a[i]; index2=i; } } System.out.println("Large Number: "+large+ " …
The End.
jitun2004