2、編寫程式列印型別的大小【bool、char、 short、 int 、float 、double、 long、long long】
#include#include//system需要的標頭檔案
4、編寫**,嘗試使用不同的注釋方式注釋**【c方式/* */、c++方式//、預處理
方式#if 0 endif】
ctrl+k+c/ctrl+k+u有驚喜
第一種注釋方法——c方式
/*
#include#includeint main()
*/
第二種注釋方法——c++方式
//#include//#include//int main()
//
第三種注釋方法#if 0 #endif
#if 0
#include#includeint main()
#endif
ctrl+k+c/ctrl+k+u有驚喜
初識C語言1
什麼是c語言?c語言是一門通用計算機程式語言,廣泛應用於底層開發。c語言的設計目標是提供一種能以簡易的方式編譯 處理低階儲存器 產生少量的機器碼以及不需要任何執行環境支援便能執行的程式語言。include 簡單c語言程式 intmain 資料型別 char 字元資料型別 short 短整型int 整...
初識C語言 1
c語言學習的一些簡單的總結 1 define crt secure no warnnings 這是vs獨有的 因為vs編譯器認為printf scanf 這樣的函式是unsafe的,所以要在一開始編寫這段指令,使得這種函式可以正常執行 2 include 是standard input output...
python 學習歷程 基礎知識(1day)
這下面的記錄純屬全當自己的個人學習筆記 一 基礎知識 1 運算子 加 減 乘 除 整除 取餘 冪運算 1 2 3 1 2 1 1 2 2 1 2 0.5 1 2 0 1 2 1 2 3 8 2 數值函式 pow 冪運算 abs 求絕對值 round 四捨五入求整數 floor 向下取整 int 取整...