发布网友 发布时间:2022-03-28 11:16
共1个回答
热心网友 时间:2022-03-28 12:45
编程语言,被我们熟知的,分为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 hereJava
/* 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 herePerl
#!/usr/bin/perl
# your code goes herePHP
<?php
// your code goes herePython
# your code goes hereVB
Imports System
Public Class Test
Public Shared Sub Main()
' your code goes here
End Sub
End ClassGroovy
class Ideone {
static void main(String[] args) {
}
}Ruby
# your code goes hereScala
object Main extends App {
// your code goes here
}
个人建议:最好从C或C++开始学。可以拓展Java或者Python学习,也推荐PHP。VB学了对Microsoft宏很有帮助,其余语言不是很推荐啊。
备注:有一种编程工具用拼图的方式拼出程序,叫做Scratch,初学者建议试一下我也是学了这个转C++的。但Scratch不是编程语言,切记。