Prog 1

You might also like

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

import java.util.*; class was1 { public static void main(String...dg)throws Exception { Scanner s=new Scanner(System.

in); int [ ] a=new int [10]; int i; int temp=a[0]; for(i=0;i<=5;i++) { a[i]=s.nextInt(); } for(i=0;i<=5;i++) { if(a[i]>a[i+1]) { temp=a[i]; a[i]=a[i+1]; a[i+1]=temp; } System.out.print(temp+" "); } } }

You might also like