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

 我来答
20080602harry
2018-07-25
知道答主
回答量:31
采纳率:0%
帮助的人:4.5万
展开全部

编程语言,被我们熟知的,分为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不是编程语言,切记。

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式