Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

JonathanMoreno14/Programming-Languages-Concepts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

50 Commits

Repository files navigation

Programming-Languages-Concepts

This is a list of object oriented programming languages that includes their syntax. The list can be used as a reference for the language.

Examples:

Finding out if the given number is greater than or less than 50.

Java

public class numbers{
public static void num(int in){ // Method with parameter for integer
	 
 if(in > 50){ //Checks the conditional statement if in is greater than 50
 System.out.println("The number is greater that 50"); //if true prints this line
 }else{ //else prints this line
 System.out.println("The number is less than 50");
 }
}
public static void main(String[] args) {
 System.out.println("hello world");
 num(78); //Method num(); 
 }
}
//Prints Hello World
//The number is greater that 50

Ruby

def num(int= '') # Method def 
 if int > 50 # The user inputs a number in num() it checks if the number is greater than 50
 "The number is greater than 50"
 else # else the number is less than 50 
 "The number is less than 50"
 end
end
 num(78) 
 #Prints The number is greater than 50

Javascript

function numbers(nums){ //Function contains a nums within its parameters
 if(nums > 50){ //Checks conditional statement if nums is greater than 50
 console.log("This number is greater than 50"); //if so, then the console output prints this message
 }else{
 console.log("This number is less than 50"); //else it prints this console output
 }
}
numbers(78) 
//Prints This number is greater than 50

CSharp

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Numbers
{
 class Program
 {
 static void Main(string[] args)
 {
 Console.WriteLine("Enter a Number:"); //Enter the number
 int num = Convert.ToInt32(Console.ReadLine()); //Converts string to interger from the number input
 numberGreater(num); //Calls method numberGreater(int n)
 Console.WriteLine(num); //prints out the conditional statement result
 Console.ReadLine();
 }
 public static void numberGreater(int n)
 {
 if (n > 50)
 {
 Console.WriteLine("The number is greater that 50");
 }
 else {
 Console.WriteLine("The number is less than 50");
 }
 }
 }
}

Swift

func numbers(num: Int) -> Int{
 if num > 50 {
 print("The number is greater than 50")
 return num
 }else {
 print("The number is less than 50")
 return num
 }
}
numbers(num: 78)
//Prints The number is greater than 50

Python 3

def num(num1):
 if num1 > 50:
 print("The number is greater than 50")
 else:
 print("The number is less than 50")
num(70)

About

This is a list of object oriented programming languages that includes their syntax.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /