From cc0b62301be401a2e0936ceebb97e2243233b65b Mon Sep 17 00:00:00 2001 From: Arghya Ghosh <71373838+uiuxarghya@users.noreply.github.com> Date: Fri, 12 Nov 2021 01:06:35 +0530 Subject: [PATCH] Update print-an-integer.mdx Added a link to https://javaistic.vercel.app/docs/basic-input-output --- src/pages/programs/print-an-integer.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/programs/print-an-integer.mdx b/src/pages/programs/print-an-integer.mdx index c304d8b2..b1d3c5c8 100644 --- a/src/pages/programs/print-an-integer.mdx +++ b/src/pages/programs/print-an-integer.mdx @@ -12,7 +12,7 @@ The integer is stored in a variable using `System.in`, and is displayed on the s To understand this example, you should have the knowledge of the following Java programming topics: - [Java Hello World Program](/docs/hello-world) -- Java Basic Input and Output +- [Java Basic Input and Output](/docs/basic-input-output) ## 1. Print an Integer @@ -90,4 +90,4 @@ Then, `Enter a number` prompt is printed to give the user a visual cue as to wha If you enter any character which is not an integer, the compiler will throw an `InputMismatchException`. -Finally, `number` is printed onto the standard output `(System.out)` - computer screen using the function `println()`. \ No newline at end of file +Finally, `number` is printed onto the standard output `(System.out)` - computer screen using the function `println()`.