質問編集履歴

1

LinReg.java を追加しました。

2018/07/28 06:42

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -247,3 +247,29 @@
247
247
  }
248
248
 
249
249
  ```
250
+
251
+
252
+
253
+ ### LinReg
254
+
255
+
256
+
257
+ ```Java
258
+
259
+ import java.util.Scanner;
260
+
261
+
262
+
263
+ public class LinReg {
264
+
265
+
266
+
267
+ public static void main(String[] args) {
268
+
269
+ Scanner scn = new Scanner(System.in);
270
+
271
+ while (scn.hasNext()) {
272
+
273
+ String line = scn.nextLine();
274
+
275
+ ```