Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 5--數組和字串(第二部分)//--Chapter 5--數組和字串 //--11/11/2005 Friday//--Computer Lab//--Liwei//--程式#17 二維數組#include <iostream>using namespace std;void f1();int main(){ f1(); f1(); cout<<endl<<"================
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 6--指標(第一部分) //--讀書筆記--Chapter 6--指標 //--11/12/2005 Sat.//--Computer Lab//--Liwei//--程式#1#include <iostream>using namespace std;int main(){ int balance; int *balptr; int value; balance=3200; balptr=&
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 3--基礎資料型別 (Elementary Data Type) //--Chapter 3--基礎資料型別 (Elementary Data Type) //--11/7/2005 Mon.//--Computer Lab//--Liwei//--程式#1 局部變數的使用#include <iostream>using namespace std;void func();int main(){ int x=10;
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 6--指標(第二部分) //--讀書筆記--Chapter 6--指標 //--11/13/2005 Sun.//--Computer Lab//--Liwei//--程式#8 指標與字串字面量#include <iostream>using namespace std;int main(){ char *s; s="Pointer are fun to use./n"; cout<<s; return
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 4--程式控制語句(第一部分) //--Chapter 4--程式控制語句 //--11/8/2005 Tues.//--Computer Lab//--Liwei//--程式#1 魔術數字程式#include <iostream>#include <cstdlib>using namespace std;int main(){ int magic; int guess; magic=rand();
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 2--C++概述 //--Chapter 2--C++概述 //--11/7/2005 Mon..//--Computer Lab//--Liwei所有程式在正常結束時都應該返回0。函數不能嵌套定義。唯一不需要原型聲明的函數是main()。因為系統已經預定義了。//--程式#1 第一個C++程式#include <iostream>using namespace std;int main(){
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 4--程式控制語句(第二部分) //--Chapter 4--程式控制語句 //--11/9/2005 Wed.//--Computer Lab//--Liwei//--程式#14 do--while的用法#include <iostream>using namespace std;int main(){ int num; do{ cout<<"Enter a number (100 to
Time of Update: 2018-12-03
C語言中常見錯誤(轉貼) C語言的最大特點是:功能強、使用方便靈活。C編譯的程式對語法檢查並不象其它進階語言那麼嚴格,這就給編程人員留下“靈活的餘地”,但還是由於這個靈活給程式的調試帶來了許多不便,尤其對初學C語言的人來說,經常會出一些連自己都不知道錯在哪裡的錯誤。看著有錯的程式,不知該如何改起,本人通過對C的學習,積累了一些C編程時常犯的錯誤,寫給各位學員以供參考。1.書寫標識符時,忽略了大小寫字母的區別。main(){int
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 5--數組和字串(第一部分)//--Chapter 5--數組和字串 //--11/10/2005 Thurs.//--Computer Lab//--Liwei//--程式#1 數組#include <iostream>using namespace std;int main(){ int sample[10]; int t; for(t=0; t<10; t++) sample[t]=t;
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 9--更多的資料類型與運算子(第一部分)//--Chapter 9--更多的資料類型與運算子//--11/16/2005 Wed.//--Computer Lab//--Liwei//--程式#1 const的使用#include <iostream>using namespace std;void code(const char *str);void code1(char *const str);int main(){
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 9--更多的資料類型與運算子(第二部分)//--Chapter 9--更多的資料類型與運算子//--11/17/2005 Thurs.//--Computer Lab//--Liwei//--程式#9 轉換為大寫字元#include <iostream>using namespace std;int main(){ char ch; do{ cin>>ch; ch&=223; //ch=ch&
Time of Update: 2018-12-03
/*列印三角 Micro_lee*/#include <stdio.h>#include <string.h>#include <math.h>void asterisk_triangle(int n);int main(){ int m; printf("Please enter m:"); scanf("%d", &m); asterisk_triangle(m); printf("/n/n"); return 0;}void
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 10--結構與聯合//--Chapter 10--結構與聯合//--11/24/2005 Thurs.//--Computer Lab//--Liwei//--程式#1 使用數組結構#include <iostream>#include <cctype>#include <cstring>#include <cstdlib>using namespace std;const int SIZE=
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 11--類(第三部分)//--Chapter 11--類//--03/12/2006 Sun.//--Computer Lab//--Liwei //--程式#3 queuq#include <iostream>using namespace std;class queue{ int sloc,rloc; int q[100];public: queue(); ~queue(); void qput(int i); int
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 7--函數,第一部分:基礎知識(第一部分)//--Chapter 7--函數,第一部分:基礎知識 //--11/14/2005 Mon.//--Computer Lab//--Liwei//--程式#1 範圍#include <iostream>using namespace std;void f1();int main(){ char str[]="this is str in main()."; cout<&
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 11--類(第一部分)//--Chapter 11--類//--03/12/2006 Sun.//--Computer Lab//--Liwei //--程式#1 queuq#include <iostream>using namespace std;class queue{ int sloc,rloc;public: int q[100]; void init(); void qput(int i); int qget();
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 11--類(第四部分)//--Chapter 11--類//--03/15/2006 Wed.//--Computer Lab//--Liwei //--程式#4 queuq#include <iostream>using namespace std;int SIZE=3;class queue{ int sloc,rloc; int who;public: int q[3]; queue(int id); ~queue();
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 7--函數,第一部分:基礎知識(第二部分)//--Chapter 7--函數,第一部分:基礎知識 //--11/14/2005 Mon.//--Computer Lab//--Liwei//--程式#15 命令列參數#include <iostream>using namespace std;int main(int argc, char *argv[]){ if(argc!=2){ cout<<"You
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 11--類(第二部分)//--Chapter 11--類//--03/12/2006 Sun.//--Computer Lab//--Liwei //--程式#2 對類成員得訪問#include <iostream>using namespace std;class myclass{ int a;public: int b; void setab(int i); int geta(); void reset();};void
Time of Update: 2018-12-03
//--《C++捷徑教程》讀書筆記--Chapter 8--函數,第二部分:引用,重載和預設參數//--Chapter 8--函數,第二部分:引用,重載和預設參數//--11/15/2005 Tues.//--Computer Lab//--Liwei//--程式#1 值傳遞#include <iostream>using namespace std;int sqr_it(int x);int main(){ int t=10; cout<<sqr_it(t)<