/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package com.mycompany.clase_alejandro;

/**
 *
 * @author jdani
 */
public class OperadoresII {
    public static void main(String[] args) {
        //Operador de asignación:
        int x=10;
        
        //Incrementa 3 UNIDADES el valor de x.
        //x = x+3; //Forma 1.
        x+=3;    //Forma 2. Operadores de asignación
        System.out.println(x);
    }
    
}
