1
编译运行c语言
先写好c语言代码,保存在c盘的某个位置,并且以hello.c命名
---->gcc hello.c
--->a.exe
就能编译运行了
2
编译运行c++语言
先写好c++语言代码,保存在c盘的某个位置,并且以hello.cpp命名
------>g++ hello.cpp
------->a.exe
就能编译运行了
3
编译运行java语言
先写好java语言代码,保存在c盘的某个位置,并且以hello.java命名
-------->javac hello.java
---------> java hello
就能编译运行了