C/C++標頭檔案太難記?一個萬能標頭檔案全搞定!

Curtis_發表於2019-03-08

#include <stdio.h>、#include <iostream>、#include <string>、#include <algorithm>、#include <math.h>

這麼多複雜的標頭檔案,不僅裡面的內容難以理解,而且也非常難記,那麼我們如何處理這些標頭檔案?如何方便我們在寫程式碼的時候,不用擔心少些了哪些標頭檔案?

下面我來介紹一個萬能標頭檔案:#include <bits/stdc++.h>

#include<bits/stdc++.h>包含c/c++中的所有標頭檔案

也就是說只要用#include <bits/stdc++.h>媽媽就再也不用擔心的忘記加亂七八糟的標頭檔案了,這個好像並不是所有的oj平臺都能用哦!

-----------------------------------------------------

#include<cstdio>

#include<iostream>

using namespace std;

int main(){

    int n;

    scanf(“%d”,&n);

    cout<<n<<endl;

    return 0;

}

-----------------------------------------------------

#include<bits/stdc++.h>

using namespace std;

int main(){

   int n;
 
   scanf(“%d”,&n);

   cout<<n<<endl;

   return 0;

}

-----------------------------------------------------

這兩份程式碼的效果是一模一樣的哦!

來源:今日頭條-大學生程式設計

相關文章