Skip to content

Commit e0108ad

Browse files
update
1 parent b34de9f commit e0108ad

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

dsa/1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>C++ Programming</title>
7+
<title>DSA </title>
88

99
<!-- Favicon -->
1010

java/1.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ <h2>Java Hello World Program</h2><br>
7373
</center>
7474
<p>In this tutorial, you will learn to write "Hello World" program in Java. A "Hello, World!" is a simple program that outputs Hello, World! on the screen. Since it's a very simple program, it's often used to introduce a new programming language
7575
to a newbie.
76-
<br> Let 's explore how Java "Hello, World!" program works. <br>If you want to run this program on your computer, make sure that Java is properly installed. Also, you need an IDE (or a text editor) to write and edit Java code. For that, check
77-
<a href="#"> How to run Java on your computer?</a></p>
76+
<br> Let 's explore how Java "Hello, World!" program works. <br>If you want to run this program on your computer, make sure that Java is properly installed. Also, you need an IDE (or a text editor) to write and edit Java code.
77+
</p>
7878

7979

8080
<h5>Hello World Program </h5>
@@ -114,7 +114,7 @@ <h2>How Java &quot;Hello, World!&quot; Program Works?</h2>
114114
<ol>
115115
<li><code>// Your First Program</code><br />
116116
<br /> In Java, any line starting with<code>//</code> is a comment. Comments are intended for users reading the code to better understand the intent and functionality of the program. It is completely ignored by the Java compiler (an application
117-
that translates Java program to Java bytecode that computer can execute). To learn more, visit <a href="/java-programming/comments">Java comments</a>.</li>
117+
that translates Java program to Java bytecode that computer can execute). .</li>
118118
<li><code>class HelloWorld { ... }</code><br />
119119
<br /> In Java, every application begins with a class definition. In the program, <var>HelloWorld</var> is the name of the class, and the class definition is:
120120
<pre>
@@ -126,7 +126,7 @@ <h2>How Java &quot;Hello, World!&quot; Program Works?</h2>
126126
<br /> This is the main method. Every application in Java must contain the main method. The Java compiler starts executing the code from the main method.<br />
127127
<br />
128128
<strong>How does it work?</strong> Good question. However, we will not discuss it in this article. After all, it&#39;s a basic program to introduce Java programming language to a newbie. We will learn the meaning of <code>public</code>,
129-
<code>static</code>, <code>void</code>, and <a href="/java-programming/methods">how methods work</a>? in later chapters.<br />
129+
<code>static</code>, <code>void</code>, and how methods work? in later chapters.<br />
130130
<br /> For now, just remember that the main function is the entry point of your Java application, and it&#39;s mandatory in a Java program. The signature of the main method in Java is:
131131
<pre>
132132
public static void main(String[] args) {

python.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>C++ Programming</title>
7+
<title>Python Programming</title>
88

99
<!-- Favicon -->
1010

python/1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>C++ Programming</title>
7+
<title>Python Programming</title>
88

99
<!-- Favicon -->
1010

0 commit comments

Comments
 (0)