Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1.  
  2. public class MakingDecisions1 {
  3.  
  4. public static void main(String[] args) {
  5.  
  6. String name = "Yuri";
  7. hello(name);
  8. }
  9. static void hello (String name ){
  10. System.out.println( "Hello " + name);
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement