2019年7月16日 星期二

1080716資訊第二專長-程式設計筆記

http://cvml.cs.nchu.edu.tw/VC/VC.html




 int

 return

#include "stdafx.h"

#include iostream>

using std::cout;
using std::endl;     //換行


using std::setw;

結尾;

有缺少會出現紅線

變數用逗號分開

//  單行註解

/*    */多行註解


cou t;<<    ;          //輸出變數

cou t;<<    "   "          //輸出字串


變數 英文 大寫 小寫 底線 數字 


int value=0;   //4個位元


Data tpes

bool    1
char    1

float      浮點運算
double


i=i+1 計數器
i+=1
i++


count=count+1
count+=1
++count
int count=5


Prefix
total = ++count + 6;  // total = 12
total = --count + 6;  // total = 10

 Postfix
total = (count++) + 6; // total = 11
total = count + 6; ++count;
total = 6 + count++;
total = 6 + count--; // total = 11



const doule=    //不能改變數字


input_names();
sort_names();
output_names();




沒有留言:

張貼留言