I understand most people have their own broadband or internet at home. So why not put it to good use aside from using it for research, email, farmville and the likes?
First and foremost, I urge you to be Open minded, and Patient.
Secondly, I urge you to create a PayPal and an AlertPay account. This is where you will be paid. I'll try to make a guide on making PayPal and AlertPay account on my next writing.
Click here to register Paypal
Click here to register AlertPay
Let me introduce to you, an Online Opportunity that only takes 15-30 Minutes of your Internet time.
Pay - to - Click.[PTC]
What is PTC?
PTC (Pay To Click) sites let you click ads and you get paid for it either by PayPal or AlertPay.
One clicked ad will reward you with 0.01-2 cents.
There are a number Ads daily, so you can earn in a day with just one page without referrals.
There is also an upgrade option in all PTCs. Upgrades differ from different PTCs. Some let you earn 0.1$ or 1$ per ad. There are also some that let's you earn 0.01 to 0.1 per ad your referrals click. Exploring these PTCs are worthwhile especially if you have nothing much on your hands.
Referrals
What are referrals?
PTC sites are not limited to just letting you earn by clicking ads daily.
They also let you earn a percentage commission from people you refer to the PTC site.
PTC Sites also let you RENT referrals for a minimum of one month. They are the same as direct referrals, they only have an expiration date. You, however have the option to extend the duration of these referrals.
Example:
A is a PTC member of X. A earns 0.01 per ad. A refers B to PTC X. B earns 0.01 per ad, while A earns 0.05 per ad B clicks.
There is a downside however. PTC Sites, restrict one (1) account per household.
Meaning, there could only be ONE (1) User account per IP Address of a broadband / DSL in the house.
Also, in the Philippines, Static Internet Service Providers such as SMART, GLOBE TELECOM, and SUN give out static IP Addresses in an Area. So, if there is someone else in your area engaged in a PTC that you are in, there will be a conflict and possibly both of your accounts will get suspended.
Below are some of the PTCs I am in. I've already earned $30 combined.
Neobux Best Paying Site!!

Gagabux Most Ads!!

LegitinComeBux Good Number of Ads!!

AdPtc Good number of Ads!!

I'll post in my next blog on how you can withdraw your earnings. Before that, go on and try it.
Each and everyone of is very familiar with the aspect of dating. There are quite many people who are in to dating. Some of these people are teenagers, single adults, and there are even some single parents partake in this endeavor. But what is dating really about? Is it about the getting to know each other and ending up in a relationship? Or, is about just having fun?
Dating is an activity, which involves two people. Usually people not fully acquainted with each other. Sometimes it involves two people who are in a relationship. In dating, it is so often held in a restaurant wherein the two talk people about each other. Their likes, hobbies, what they eat, or work is the topic often talked about. There are times; however that it isn't held in a restaurant or any food chain for that matter. Sometimes they just go to a park together or maybe walk by the bay.
Nowadays, dating is done online. With the advancement of technology, dating also has advanced. Online dating via instant messenger or (IM) along with the use of a webcam and a microphone, is quite the trend today. Also, interested singles that are looking for a relationship or maybe a lifetime partner may opt to take a look at online dating sites. These dating sites work like networking sites such as Facebook, Friendster, Multiply, etc.
However, these dating sites are a little different. Like as all networking sites, interested singles may create their own profiles and customize it. In their profiles unlike the other networking sites, they have the option to choose from "looking for woman" if they are males and "looking for man" for females. Each user's profile is viewed by others who are probably looking for friend, a relationship, or maybe a companion.
There are also dating sites for singles Asian. These dating sites compose mostly of Asian singles that are looking for other Asians. Though these dating sites are composed of Asians, there others too who are not Asian whom are looking for Asian partners. There are other dating sites as well where other singles abound.
Dating however, is not limited to dating sites and IMs. There are also social games in the internet where people meet each other. Some of these are Massive Multiplayer Online (MMO) games and Flash games in networking sites.
In MMOs users create their own character to their liking, and go on with the game while meeting other characters controlled by other users. These characters represent the users in the gaming world and thus, the social world of the users have is taken in to a new level. Whether the character is male or female, the user or the one controlling the character is what counts. As said by most people; “People get to know each other by having fun.”
On the other hand, flash games are somehow the same as MMOs except that it is more simple and straightforward. A user creates a character or avatar, and they mingle with other users using the built in social skills incorporated in the game.
All in all, dating is no longer limited to simply, “dining out. “ Technology has become a factor in dating today and it will improve dating even further in the future.
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class Calculator_Main extends javax.swing.JFrame implements ActionListener {
int i,fans=0,ftxt;
double ans;
public double compute(double x, double y, int oper){
double nReturn = 0;
switch(oper)
{
case 1:
nReturn = x + y;
break;
case 2:
nReturn = x - y;
break;
case 3:
nReturn = x * y;
break;
case 4:
nReturn = x / y;
break;
default:
System.exit(0);
}
return nReturn;
}
public Calculator_Main()
{
initComponents();
}
@SuppressWarnings("unchecked")
//
private void initComponents() {
jTextField1 = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
jButton3 = new javax.swing.JButton();
jButton4 = new javax.swing.JButton();
Add = new javax.swing.JButton();
jButton6 = new javax.swing.JButton();
Subt = new javax.swing.JButton();
jButton8 = new javax.swing.JButton();
jButton9 = new javax.swing.JButton();
Equal = new javax.swing.JButton();
jButton11 = new javax.swing.JButton();
jButton12 = new javax.swing.JButton();
Decimal = new javax.swing.JButton();
jButton14 = new javax.swing.JButton();
Multip = new javax.swing.JButton();
Divi = new javax.swing.JButton();
DEL = new javax.swing.JButton();
CLS = new javax.swing.JButton();
jButton19 = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("Calculator");
setBackground(new java.awt.Color(0, 0, 0));
setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
setForeground(new java.awt.Color(0, 0, 0));
setResizable(false);
jTextField1.setBackground(new java.awt.Color(255, 255, 255));
jTextField1.setColumns(30);
jTextField1.setEditable(false);
jTextField1.setHorizontalAlignment(javax.swing.JTextField.TRAILING);
jTextField1.setText("0");
jTextField1.setAlignmentY(0.0F);
jTextField1.setDisabledTextColor(new java.awt.Color(255, 255, 255));
jTextField1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField1ActionPerformed(evt);
}
});
jButton1.setText(" 1 ");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jButton2.setText(" 4 ");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
jButton3.setText(" 5 ");
jButton3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton3ActionPerformed(evt);
}
});
jButton4.setText(" 2 ");
jButton4.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton4ActionPerformed(evt);
}
});
Add.setLabel("+");
Add.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
AddActionPerformed(evt);
}
});
jButton6.setText(" 6 ");
jButton6.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton6ActionPerformed(evt);
}
});
Subt.setText("- ");
Subt.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
SubtActionPerformed(evt);
}
});
jButton8.setText(" 3 ");
jButton8.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton8ActionPerformed(evt);
}
});
jButton9.setText(" 9 ");
jButton9.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton9ActionPerformed(evt);
}
});
Equal.setText("=");
Equal.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
EqualActionPerformed(evt);
}
});
jButton11.setText(" 8 ");
jButton11.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton11ActionPerformed(evt);
}
});
jButton12.setText(" 0 ");
jButton12.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton12ActionPerformed(evt);
}
});
Decimal.setText(".");
Decimal.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
DecimalActionPerformed(evt);
}
});
jButton14.setText(" 7 ");
jButton14.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton14ActionPerformed(evt);
}
});
Multip.setText("x");
Multip.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
MultipActionPerformed(evt);
}
});
Divi.setText("÷");
Divi.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
DiviActionPerformed(evt);
}
});
DEL.setText("DEL");
DEL.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
DELActionPerformed(evt);
}
});
CLS.setText("CLS");
CLS.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
CLSActionPerformed(evt);
}
});
jButton19.setText("EXIT");
jButton19.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton19ActionPerformed(evt);
}
});
jLabel1.setText("© ALL RIGHTS RESERVED");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(39, 39, 39)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 202, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
.addComponent(DEL, javax.swing.GroupLayout.PREFERRED_SIZE, 58, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(CLS, javax.swing.GroupLayout.PREFERRED_SIZE, 65, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButton19, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jButton14, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButton12, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButton2))
.addComponent(jButton1))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jButton4)
.addComponent(jButton3))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jButton8)
.addComponent(jButton6)))
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(Decimal, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButton11))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(Equal, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButton9, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(Divi, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(Add, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(Multip, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(Subt))))
.addGroup(layout.createSequentialGroup()
.addGap(32, 32, 32)
.addComponent(jLabel1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 46, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addGap(27, 27, 27))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(22, 22, 22)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 32, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton4)
.addComponent(jButton8)
.addComponent(jButton1))
.addComponent(Add, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton3)
.addComponent(jButton6)
.addComponent(jButton2)
.addComponent(Subt))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton11)
.addComponent(jButton14))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(Decimal)
.addComponent(jButton12)
.addComponent(Equal)
.addComponent(Divi)))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton9)
.addComponent(Multip)))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(DEL)
.addComponent(jButton19)
.addComponent(CLS))
.addGap(18, 18, 18)
.addComponent(jLabel1)
.addContainerGap(29, Short.MAX_VALUE))
);
pack();
}//
private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {
//
}
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0){
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(1));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(1));
}
}
}
private void jButton19ActionPerformed(java.awt.event.ActionEvent evt) {
System.exit(0);
}
private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0)
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(2));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(2));
}
}
private void AddActionPerformed(java.awt.event.ActionEvent evt) {
if(evt.getSource() == Add)
{
if(fans == 0)
{
ans = Double.parseDouble(jTextField1.getText());
jTextField1.setText("0");
fans = 1;
}
else
{
ans = compute(ans, Double.parseDouble(jTextField1.getText()), fans);
fans = 1;
ftxt = 1;
jTextField1.setText(Double.toString(ans));
}
}
}
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0)
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(4));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(4));
}
}
private void jButton8ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0)
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(3));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(3));
}
}
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0)
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(5));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(5));
}
}
private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0)
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(6));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(6));
}
}
private void jButton9ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0)
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(9));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(9));
}
}
private void jButton14ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0)
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(7));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(7));
}
}
private void jButton11ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0)
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(8));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(8));
}
}
private void jButton12ActionPerformed(java.awt.event.ActionEvent evt) {
if(ftxt == 0)
{
if(jTextField1.getText().equals("0"))
jTextField1.setText(Integer.toString(0));
else
jTextField1.setText(jTextField1.getText() + Integer.toString(0));
}
}
private void CLSActionPerformed(java.awt.event.ActionEvent evt) {
if(evt.getSource() == CLS)
{
jTextField1.setText("0");
fans = 0;
ftxt = 0;
}
}
private void DiviActionPerformed(java.awt.event.ActionEvent evt) {
if(fans == 0)
{
ans = Double.parseDouble(jTextField1.getText());
jTextField1.setText("0");
fans = 4;
}
else
{
ans = compute(ans, Double.parseDouble(jTextField1.getText()), fans);
fans = 4;
ftxt = 1;
jTextField1.setText(Double.toString(ans));
}
}
private void DecimalActionPerformed(java.awt.event.ActionEvent evt) {
if(evt.getSource() == Decimal)
{
if(ftxt == 0)
{
if(!jTextField1.getText().contains("."))
jTextField1.setText(jTextField1.getText() + ".");
}
else
{
jTextField1.setText("0.");
ftxt = 0;
}
}
}
private void EqualActionPerformed(java.awt.event.ActionEvent evt) {
if(evt.getSource() == Equal)
{
switch(fans)
{
case 0:
break;
case 1:
ans = compute(ans, Double.parseDouble(jTextField1.getText()), fans);
jTextField1.setText(Double.toString(ans));
fans = 0;
break;
case 2:
ans = compute(ans, Double.parseDouble(jTextField1.getText()), fans);
jTextField1.setText(Double.toString(ans));
fans = 0;
break;
case 3:
ans = compute(ans, Double.parseDouble(jTextField1.getText()), fans);
jTextField1.setText(Double.toString(ans));
fans = 0;
break;
case 4:
ans = compute(ans, Double.parseDouble(jTextField1.getText()), fans);
jTextField1.setText(Double.toString(ans));
fans = 0;
break;
default:
System.exit(0);
break;
}
}
}
private void SubtActionPerformed(java.awt.event.ActionEvent evt) {
if(evt.getSource() == Subt)
{
if(fans == 0)
{
ans = Double.parseDouble(jTextField1.getText());
jTextField1.setText("0");
fans = 2;
}
{
ans = compute(ans, Double.parseDouble(jTextField1.getText()), fans);
fans = 2;
ftxt = 1;
jTextField1.setText(Double.toString(ans));
}
}
}
private void MultipActionPerformed(java.awt.event.ActionEvent evt) {
if(evt.getSource() == Multip)
{
if(fans == 0)
{
ans = Double.parseDouble(jTextField1.getText());
jTextField1.setText("0");
fans = 3;
}
else
{
ans = compute(ans, Double.parseDouble(jTextField1.getText()), fans);
fans = 3;
ftxt = 1;
jTextField1.setText(Double.toString(ans));
}
}
}
private void DELActionPerformed(java.awt.event.ActionEvent evt) {
if(evt.getSource() == DEL)
{
if(ftxt == 0)
{
if(jTextField1.getText().length() > 0)
jTextField1.setText(jTextField1.getText().substring(0, jTextField1.getText().length() - 1));
}
}
}
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Calculator_Main().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton Add;
private javax.swing.JButton CLS;
private javax.swing.JButton DEL;
private javax.swing.JButton Decimal;
private javax.swing.JButton Divi;
private javax.swing.JButton Equal;
private javax.swing.JButton Multip;
private javax.swing.JButton Subt;
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton11;
private javax.swing.JButton jButton12;
private javax.swing.JButton jButton14;
private javax.swing.JButton jButton19;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
private javax.swing.JButton jButton4;
private javax.swing.JButton jButton6;
private javax.swing.JButton jButton8;
private javax.swing.JButton jButton9;
private javax.swing.JLabel jLabel1;
private javax.swing.JTextField jTextField1;
// End of variables declaration
public void actionPerformed(ActionEvent e) {
throw new UnsupportedOperationException("Not supported yet.");
}
}






