El método println(int) de PrintWriter Class en Java se usa para imprimir el valor int especificado en la secuencia y luego dividir la línea. Este valor int se toma como parámetro.
Sintaxis:
public void println(int intValue)
Parámetros: este método acepta un parámetro obligatorio intValue que es el valor int que se escribirá en la secuencia.
Valor devuelto: este método no devuelve ningún valor.
Los siguientes métodos ilustran el funcionamiento del método println(int):
Programa 1:
// Java program to demonstrate // PrintWriter println(int) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintWriter instance PrintWriter printr = new PrintWriter(System.out); // Print the int value '4' // to this stream using println() method // This will put the intValue in the // stream till it is printed on the console printr.println(4); printr.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
4
Programa 2:
// Java program to demonstrate // PrintWriter println(int) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintWriter instance PrintWriter printr = new PrintWriter(System.out); // Print the int value '65' // to this stream using println() method // This will put the intValue in the // stream till it is printed on the console printr.println(65); printr.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
65
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA