12/11/2011

Contoh Operator Aritmatika

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package pkg233_Pradipta_ichwanto_putro_tp1;

/**
*
* @author BLACKPEARL
*/
import java.util.Scanner;
public class TP4MathOperators {
public static void main(String args[]){
Scanner bucky = new Scanner(System.in);
int cewek, cowok, orang;
cewek = 11;
cowok = 3;
orang = cewek + cowok;
System.out.println(orang);
}
}

No comments:

Post a Comment