Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.samkough.java.main;
- public class Integers
- {
- public static void main(String[] args)
- {
- String myarray[] = {"sam", "rommy", "zack"};
- for (String i: myarray)
- {
- if(i == myarray[2])
- {
- System.out.println(i);
- }
- else
- {
- System.out.print(i + ", ");
- }
- }
- }
- }
- // Output: sam, rommy, zack
Advertisement
Add Comment
Please, Sign In to add comment