2016a
(Различия между версиями)
Antonk (обсуждение | вклад) |
Antonk (обсуждение | вклад) (→Чтение массива из файла) |
||
| Строка 1: | Строка 1: | ||
| − | == Чтение массива из файла == | + | == Чтение массива из файла (Scanner - можно числа в одной строке) == |
<pre> | <pre> | ||
| + | |||
| + | /* | ||
| + | * Читает из файла input.txt | ||
| + | * В первой строке число n - количество чисел. | ||
| + | * Во второй - n чисел. | ||
| + | * | ||
| + | * Пример: | ||
| + | * 6 | ||
| + | * 12 1 41 2 54 13 | ||
| + | */ | ||
| + | |||
import java.io.BufferedReader; | import java.io.BufferedReader; | ||
import java.io.File; | import java.io.File; | ||
Версия 09:20, 6 февраля 2013
Содержание |
Чтение массива из файла (Scanner - можно числа в одной строке)
/*
* Читает из файла input.txt
* В первой строке число n - количество чисел.
* Во второй - n чисел.
*
* Пример:
* 6
* 12 1 41 2 54 13
*/
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
public class Main2 {
public static void main(String[] args) throws NumberFormatException, IOException {
Scanner sc = new Scanner(new File("input.txt"));
int n = sc.nextInt();
int arr[] = new int[n];
for (int i = 0; i < arr.length; i++) {
arr[i] = sc.nextInt();
}
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
}
}
А+Б. Ввод из файла. Вывод в файл
import java.io.*;
import java.util.*;
public class aplusb {
public static void main(String[] args) throws IOException {
Scanner in = new Scanner(new File("aplusb.in"));
PrintWriter out = new PrintWriter(new File("aplusb.out"));
int a = in.nextInt();
int b = in.nextInt();
out.println(a + b);
in.close();
out.close();
}
}
Ввод двух чисел в строку
Scanner sc=new Scanner(System.in); int num1=sc.nextInt(); int num2=sc.nextInt();
Ввод с клавиатуры
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
int a, b;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
a = Integer.parseInt(br.readLine());
b = Integer.parseInt(br.readLine());
System.out.println(a+b);
}
}
Функции
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
int a, b, c;
double d;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
a = Integer.parseInt(br.readLine());
b = Integer.parseInt(br.readLine());
c = sum(a, b);
d = mySqrt(b);
System.out.println(c);
System.out.println(d);
}
public static double mySqrt(int a) {
return Math.sqrt(a);
}
public static int sum(int a, int b) {
System.out.println("I really want to sleep");
return a+b;
}
public static int max2(int a, int b) {
if (a > b) {
return a;
} else {
return b;
}
}
}