Untitled
Anonymous
plain_text
12/13/2022 10:45 PM
288 B
17
Indexable
public class One {
public static boolean go( int num )
{
if( num > 10 )
return true;
return false;
}
}
//code in another class
System.out.println( One.go(12) );
System.out.println( One.go(7) );
Editor is loading...