class Table{
public static void main(String[] args){
int n=10;
int n1=20;
if(n>n1){
System.out.println("greater no ="+n);
}
else{
System.out.println("greater no ="+n1);
}
}
};
0 comments:
Post a Comment