Skip to content

Commit e8b2bf2

Browse files
committed
corrections
1 parent 33e1c5d commit e8b2bf2

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

c.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# C Language online compiler
2-
Write, Run & Share C Language code online using OneCompiler's C online compiler for free. It's one of the robust, feature-rich online compilers for C language, running the latest C version which is C18. Getting started with the OneCompiler's C editor is really simple and pretty fast. The editor shows sample boilerplate code when you choose language as 'C' and you can also choose hundreds of reference programs to get started.
2+
Write, Run & Share C Language code online using OneCompiler's C online compiler for free. It's one of the robust, feature-rich online compilers for C language, running the latest C version which is C18. Getting started with the OneCompiler's C editor is really simple and pretty fast. The editor shows sample boilerplate code when you choose language as 'C' and start coding!
33

44
# Read inputs from stdin
55
OneCompiler's C online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample C program which takes name as input and print your name with hello.
@@ -21,7 +21,7 @@ int main()
2121

2222
C language is one of the most popular general-purpose programming language developed by Dennis Ritchie at Bell laboratories for UNIX operating system. The initial release of C Language was in the year 1972. Most of the desktop operating systems are written in C Language.
2323

24-
### Key Features:
24+
### Key features:
2525

2626
* Structured Programming
2727
* Popular system programming language
@@ -36,7 +36,7 @@ C language is one of the most popular general-purpose programming language devel
3636

3737
### 1. If-Else:
3838

39-
When ever you want to perform a set of operations based on a condition IF-ELSE is used.
39+
When ever you want to perform a set of operations based on a condition `if-else` is used.
4040

4141
```c
4242
if(conditional-expression) {
@@ -46,11 +46,11 @@ if(conditional-expression) {
4646
}
4747
```
4848

49-
You can also use if-else for nested Ifs and If-Else-If ladder when multiple conditions are to be performed on a single variable.
49+
You can also use if-else for nested Ifs and if-else-if ladder when multiple conditions are to be performed on a single variable.
5050

5151
### 2. Switch:
5252

53-
Switch is an alternative to If-Else-If ladder.
53+
Switch is an alternative to if-else-if ladder.
5454

5555
```c
5656
switch(conditional-expression) {
@@ -77,7 +77,7 @@ for(Initialization; Condition; Increment/decrement){
7777
```
7878
### 4. While:
7979

80-
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of ierations is not known in advance.
80+
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
8181

8282
```c
8383
while(condition) {

cpp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# C++ Online Compiler
22

3-
Write, Run & Share C++ code online using OneCompiler's C++ online compiler for free. It's one of the robust, feature-rich online compilers for C++ language, running on the latest version 17. Getting started with the OneCompiler's C++ compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as `C++`. OneCompiler also has reference programs, where you can look for the sample programs and start learning. Happy learning!!
3+
Write, Run & Share C++ code online using OneCompiler's C++ online compiler for free. It's one of the robust, feature-rich online compilers for C++ language, running on the latest version 17. Getting started with the OneCompiler's C++ compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as `C++` and start coding!
44

55
# Read inputs from stdin
66
OneCompiler's C++ online compiler supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample program which takes name as input and print your name with hello.
@@ -79,7 +79,7 @@ for(Initialization; Condition; Increment/decrement){
7979

8080
### 4. While:
8181

82-
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of ierations is not known in advance.
82+
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
8383

8484
```c
8585
while (condition) {

java.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Java online compiler
2-
Write, Run & Share Java code online using OneCompiler's Java online compiler for free. It's one of the robust, feature-rich online compilers for Java language, running the latest Java LTS version which is Java 11. Getting started with the OneCompiler's Java editor is easy and fast. The editor shows sample boilerplate code when you choose language as Java and you can also choose hundreds of reference programs to get started. For example, if you want to write a program on Java collections choose the collections tag from reference and see hundreds of pre-written programs on collections. You can pick one of them to start your coding.
2+
Write, Run & Share Java code online using OneCompiler's Java online compiler for free. It's one of the robust, feature-rich online compilers for Java language, running the latest Java LTS version which is Java 17. Getting started with the OneCompiler's Java editor is easy and fast. The editor shows sample boilerplate code when you choose language as Java, Happy coding!
33

44
# Taking inputs (stdin)
5-
OneCompiler's Java online editor supports stdin and users can give inputs to the programs using the STDIN textbox under the I/O tab. Using Scanner class in Java program we can read the inputs. Following is a sample program that shows reading STDIN ( A string in this case ).
5+
OneCompiler's Java online editor supports stdin and users can give inputs to the programs using the STDIN textbox under the I/O tab. Using Scanner class in Java program, you can read the inputs. Following is a sample program that shows reading STDIN ( A string in this case ).
66

77
```java
88
import java.util.Scanner;
@@ -31,13 +31,13 @@ repositories {
3131
}
3232

3333
dependencies {
34-
// add dependencies here like following
34+
// add dependencies here as below
3535
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
3636
}
3737
```
3838
# About Java
3939

40-
Java is a very popular general-purpose programming language, it is class-based and object-oriented. Java was developed by James Gosling at Sun Microsystems ( later acquired by Oracle) the initial release of Java was in 1995. Java 11 is the latest long-term supported version (LTS). As of today, Java is the world's number one server programming language with a 12 million developer community, 5 million students studying worldwide and it's #1 choice for the cloud development.
40+
Java is a very popular general-purpose programming language, it is class-based and object-oriented. Java was developed by James Gosling at Sun Microsystems ( later acquired by Oracle) the initial release of Java was in 1995. Java 17 is the latest long-term supported version (LTS). As of today, Java is the world's number one server programming language with a 12 million developer community, 5 million students studying worldwide and it's #1 choice for the cloud development.
4141

4242
# Syntax help
4343

@@ -82,7 +82,7 @@ for(Initialization; Condition; Increment/decrement){
8282
```
8383
### 4. While:
8484

85-
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of ierations is not known in advance.
85+
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
8686

8787
```java
8888
while(condition){

python.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python Online Compiler
22

3-
Write, Run & Share Python code online using OneCompiler's Python online compiler for free. It's one of the robust, feature-rich online compilers for python language, supporting both the versions which are Python 3 and Python 2.7. Getting started with the OneCompiler's Python editor is easy and fast. The editor shows sample boilerplate code when you choose language as Python or Python2. OneCompiler also has reference programs, where you can look for the sample code and start learning.
3+
Write, Run & Share Python code online using OneCompiler's Python online compiler for free. It's one of the robust, feature-rich online compilers for python language, supporting both the versions which are Python 3 and Python 2.7. Getting started with the OneCompiler's Python editor is easy and fast. The editor shows sample boilerplate code when you choose language as Python or Python2 and start coding.
44

55
# Taking inputs (stdin)
66
OneCompiler's python online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample python program which takes name as input and print your name with hello.
@@ -48,7 +48,7 @@ for i in mylist:
4848

4949
### 3. While:
5050

51-
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of ierations is not known in advance.
51+
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
5252

5353
```py
5454
while condition

0 commit comments

Comments
 (0)