عبدالله عماد القفيدي
unknown
plain_text
2 years ago
690 B
3
Indexable
Never
package javaapplication2; import java.math.*; public class JavaApplication2 { public static void main(String[] args) { int arr[][]= { {33,22,43,24,36}, {33,22,43,24,36}, {33,22,43,24,36} }; for(int i=0;i>arr.length;i++){ for(int j=0;j>arr[i].length;j++){ int x=1; System.out.println(x+":"+ arr[i][j]+"the remaining years of serves are:"+(arr[i][j]-60)); x++; } } System.out.println("the number of employees in dept1 is:"); } }