软件编程中高级语言有哪些

如题所述

编程语言,被我们熟知的,分为2大类

低级语言,又分为汇编语言和机器语言(二进制码语言,只用0和1)

高级语言,一般用的字母符号数字编写

那么高级编程语言又分哪些呢?

请看:

C

#include <stdio.h>
int main(void) {
 // your code goes here
 return 0;
}

C++

#include <iostream>
using namespace std;
int main() {
 // your code goes here
 return 0;
}

C#

using System;
public class Test
{
 public static void Main()
 {
  // your code goes here
 }
}

Bash

#!/bin/bash
# your code goes here

Java

/* package whatever; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
 public static void main (String[] args) throws java.lang.Exception
 {
  // your code goes here
 }
}

Javascript

importPackage(java.io);
importPackage(java.lang);
// your code goes here

Perl

#!/usr/bin/perl
# your code goes here

PHP

<?php
// your code goes here

Python

# your code goes here

VB

Imports System
Public Class Test
 Public Shared Sub Main()
  ' your code goes here
 End Sub
End Class

Groovy

class Ideone {
    static void main(String[] args) {
    }
}

Ruby

# your code goes here

Scala

object Main extends App {
 // your code goes here
}

个人建议:最好从C或C++开始学。可以拓展Java或者Python学习,也推荐PHP。VB学了对Microsoft宏很有帮助,其余语言不是很推荐啊。

备注:有一种编程工具用拼图的方式拼出程序,叫做Scratch,初学者建议试一下我也是学了这个转C++的。但Scratch不是编程语言,切记。

温馨提示:答案为网友推荐,仅供参考
相似回答