try(Formatter x = new Formatter(new BufferedWriter(new FileWriter("src//1.txt", true)))){
Scanner scn = new Scanner(System.in);
System.out.println("Число?");
int a = (int)Double.parseDouble(scn.next());
System.out.println("Название?");
String b = scn.next();
System.out.println("Комментарий?");
String c = scn.next();
x.format("Ваше название %s, Ваше %d число, Ваш комментарий %s", b, a, c);
} catch (Exception e) { }
x.format("Ваше название %s, Ваше %d число, Ваш комментарий %s", b, a, c);
x.flush()
x.close();
package tk.lslayer.temp;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.util.Formatter;
import java.util.Scanner;
public class Main {
static Formatter x;
static Scanner scn;
public static void main(String[] args) {
try{
x = new Formatter(new BufferedWriter(new FileWriter("src//1.txt", true)));
scn = new Scanner(System.in);
System.out.println("Число?");
int a = (int)Double.parseDouble(scn.next());
System.out.println("Название?");
String b = scn.next();
System.out.println("Комментарий?");
String c = scn.next();
x.format("Ваше название %s, Ваше %d число, Ваш комментарий %s", b, a, c);
x.flush();
x.close();
} catch (Exception e) { }
}
}
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String line = reader.readLine();
while (!"exit".equals(line)) {
double a = Integer.parseInt(line);
double c = ((a / 87) * 100);
double d = ((c / 100) * 13);
double e = (c - d);
System.out.println(c + " Оклад");
System.out.println(d + " 13 процентов");
System.out.println(e + " Сверка");
reader = new BufferedReader(new InputStreamReader(System.in));
line = reader.readLine();
}
}