1、輸出hello world
使用mingw編輯器。
helloatom.cpp
//#include
// #include
//using namespace std;
int main()
錯誤
c:\log>g++ helloatom.cpp
helloatom.cpp: in
function
'int main()':
helloatom.cpp:7:12: error: 'puts' was not declared in this scope
puts("123");
看出必須 新增#include
//#include
// #include
//using namespace std;
int main()
c:\log>g++ helloatom.cpp
helloatom.cpp: in function
'int main()':
helloatom.cpp:6:4: error: 'cout' was not declared in
this scope
cout<<"hello 123atom111"
this scope
cout<<"hello 123atom111"
《這個錯誤需要新增
//#include
#include
using
namespace
std;
int main()
pass。
命令 puts—
#include
cout—
#include
using namespace std;
include 這種方式是引用資源庫中的檔案
include 「***」這個方式是引用某個目錄下的檔案,需要使用者自己放到目錄裡面,通常當前目錄。
菜鳥python學習
python中單引號和雙引號的作用相同,使用三引號 或 可以指定乙個多行字元 word 字串 sentence 這是乙個句子 paragraph 這是乙個段落,可以由多行組成 python可以在一行中寫多行,句子直接用分號連線 import sys x runoob sys.stdout.write...
菜鳥git學習
基礎知識 安裝github之後,所有的命令在git shell 中輸入。e 文件 github master 2 0 0 cd todolist e 文件 github 表示當前目錄 cd 命令就是進入你專案所在的目錄,這個命令就進入了e 文件 github todolist 如果想切換到另乙個盤 ...
llinux菜鳥學習
1 sudo su 臨時獲得root許可權,使用的密碼是使用者的密碼,而不是root的密碼 2 與 是根目錄,是 root root身份登入 或者 home name 普通使用者登入 3 ls al 看隱藏檔案 5 etc profile與 home bash profile etc profile...