1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-21 05:51:31 +02:00

[en/java] mistake fix and add missed assignment (#4344)

This commit is contained in:
Ivan
2023-08-25 06:59:22 +03:00
committed by GitHub
parent a0736c7a17
commit 0379989cfb

View File

@@ -91,6 +91,9 @@ public class LearnJava {
int numInt = scanner.nextInt(); int numInt = scanner.nextInt();
// read long input // read long input
long numLong = scanner.nextLong();
// read float input
float numFloat = scanner.nextFloat(); float numFloat = scanner.nextFloat();
// read double input // read double input