Untitled
unknown
abc
4 years ago
364 B
6
Indexable
package hello;
public class lessthan {
static int a=5;
void compare()
{
if(a<=5)
{
System.out.print("a is valuable");
}
else
System.out.print("a is not valuable");
}
public static void main(String[] args) {
// TODO Auto-generated method stub
lessthan od=new lessthan();
od.compare();
}
}
Editor is loading...