This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| public class Concertgoer { | |
| static Scanner sn = new Scanner( System.in ); | |
| public static void main(String[] args) { | |
| String emoticon[] = new String[20]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| public class Temperatures { | |
| static Scanner sn = new Scanner(System.in); | |
| public static void main(String[] args) { | |
| double temperatures[] = new double[10]; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Author: Tabs Tabontabon | |
| import java.awt.Font; | |
| import java.awt.event.ActionEvent; | |
| import java.awt.event.ActionListener; | |
| import javax.swing.JButton; | |
| import javax.swing.JFrame; | |
| import javax.swing.JLabel; | |
| import javax.swing.JOptionPane; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // --------- TABS --------- // | |
| import javax.swing.*; | |
| import javax.swing.table.*; | |
| import javax.swing.text.*; | |
| import java.awt.event.*; | |
| public class Main extends JFrame implements ActionListener { | |
| private JTextField tf[] = new JTextField[12]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Project Title: Correlation | |
| * Author: Alvin Tabontabn | |
| */ | |
| import java.awt.*; | |
| import javax.swing.*; | |
| import java.awt.event.*; | |
| import javax.swing.border.*; | |
| import javax.swing.table.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Anagram { | |
| public static void main(String[] args) { | |
| performedPermutation( "", "Java" ); | |
| } | |
| public static void performedPermutation( String start, String end ) { | |
| if( end.length() == 0 ) | |
| System.out.println( start.concat( end ) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.awt.*; | |
| import javax.swing.*; | |
| import java.awt.event.*; | |
| import java.util.Random; | |
| public class JackNPoy extends JFrame implements ActionListener, ItemListener{ | |
| JLabel lblHeaders = new JLabel("JACK N POY"); | |
| JLabel lblPSubHeaders = new JLabel(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.awt.*; | |
| import javax.swing.*; | |
| import java.awt.event.*; | |
| public class simpleCashiering extends JFrame implements ActionListener { | |
| private String[] strItems = { "SBW Huawei E1550 $ 850", | |
| "SmartBro ZTE MF627 $ 800", | |
| "HP Deskjet D2360 $ 2000", | |
| "Flash Drive (2GB) $ 300", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.awt.Color; | |
| import java.awt.event.MouseAdapter; | |
| import java.awt.event.MouseEvent; | |
| import javax.swing.JLabel; | |
| public class Hover extends MouseAdapter { | |
| private String lblStr = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package tabs; | |
| import java.awt.EventQueue; | |
| import java.awt.event.ActionEvent; | |
| import java.awt.event.ActionListener; | |
| import java.util.concurrent.ExecutorService; | |
| import java.util.concurrent.Executors; | |
| import javax.swing.JButton; | |
| import javax.swing.JFrame; |
OlderNewer