├── .gitignore ├── README.md └── 台科物件導向 ├── A star maze ├── A star maze.sln └── A star maze │ ├── A star maze.vcxproj │ ├── A star maze.vcxproj.filters │ ├── Source.cpp │ └── maze.txt ├── WASD_game ├── WASD_game.sln └── WASD_game │ ├── Source.cpp │ ├── WASD_game.vcxproj │ └── WASD_game.vcxproj.filters ├── dungeon ├── dungeon.sln └── dungeon │ ├── Source.cpp │ ├── dungeon.cpp │ ├── dungeon.h │ ├── dungeon.vcxproj │ └── dungeon.vcxproj.filters ├── gloomhaven ├── CPP_Project.exe ├── __MACOSX │ ├── ._CPP_Project.exe │ ├── ._character1.txt │ ├── ._input1.txt │ ├── ._map1.txt │ ├── ._monster1.txt │ ├── ._output1.txt │ ├── ._期末專案.pptx │ └── ._遊戲規格表.xlsx ├── character1.txt ├── gloomhaven.sln ├── gloomhaven │ ├── Character.cpp │ ├── Character.h │ ├── Coord.h │ ├── Gloom_Haven.cpp │ ├── Gloom_Haven.h │ ├── Input.cpp │ ├── Input.h │ ├── Map.cpp │ ├── Map.h │ ├── Monster.cpp │ ├── Monster.h │ ├── a_star_path.cpp │ ├── a_star_path.h │ ├── basic.cpp │ ├── basic.h │ ├── character1.txt │ ├── character3.txt │ ├── enum.h │ ├── gloomhaven.vcxproj │ ├── gloomhaven.vcxproj.filters │ ├── input1.txt │ ├── input3.txt │ ├── main.cpp │ ├── map1.txt │ ├── map3.txt │ ├── monster1.txt │ ├── monster3.txt │ ├── output1.txt │ ├── output3.txt │ ├── read_file.cpp │ └── read_file.h ├── input1.txt ├── map1.txt ├── monster1.txt ├── output1.txt ├── test.txt ├── test3 │ ├── character3.txt │ ├── input3.txt │ ├── map3.txt │ ├── monster3.txt │ └── output3.txt ├── tmp.txt ├── txt備份 │ ├── CPP_Project.exe │ ├── __MACOSX │ │ ├── ._CPP_Project.exe │ │ ├── ._character1.txt │ │ ├── ._input1.txt │ │ ├── ._map1.txt │ │ ├── ._monster1.txt │ │ ├── ._output1.txt │ │ ├── ._期末專案.pptx │ │ └── ._遊戲規格表.xlsx │ ├── character1.txt │ ├── input1.txt │ ├── map1.txt │ ├── monster1.txt │ ├── output1.txt │ ├── 期末專案.pptx │ └── 遊戲規格表.xlsx ├── 期末專案.pptx ├── 期末專案_Gloomhaven.zip └── 遊戲規格表.xlsx ├── new_big_number_project ├── new_big_number_project.sln └── new_big_number_project │ ├── Source.cpp │ ├── big_number.cpp │ ├── big_number.h │ ├── new_big_number_project.vcxproj │ └── new_big_number_project.vcxproj.filters ├── stack_maze ├── stack_maze.sln └── stack_maze │ ├── Source.cpp │ ├── maze.txt │ ├── stack_maze.vcxproj │ └── stack_maze.vcxproj.filters ├── 戴文凱 ├── 實習 │ ├── 戴實習1 │ │ ├── 1.1-Pattern_Output-lab │ │ │ ├── 1.1-Pattern_Output-lab.txt │ │ │ ├── 1.1-Pattern_Output-lab.vcxproj │ │ │ ├── 1.1-Pattern_Output-lab.vcxproj.filters │ │ │ ├── 1.1-Pattern_Output.docx │ │ │ └── main.cpp │ │ ├── 1.2-Input_Output-lab │ │ │ ├── 1.2-Input_Output-lab.txt │ │ │ ├── 1.2-Input_Output-lab.vcxproj │ │ │ ├── 1.2-Input_Output-lab.vcxproj.filters │ │ │ ├── 1.2-Input_Output.docx │ │ │ └── main.cpp │ │ ├── 1.3-Compute_Sphere_Volume-lab │ │ │ ├── 1.3-Compute_Sphere_Volume-lab.txt │ │ │ ├── 1.3-Compute_Sphere_Volume-lab.vcxproj │ │ │ ├── 1.3-Compute_Sphere_Volume-lab.vcxproj.filters │ │ │ ├── 1.3-Compute_Sphere_Volume.docx │ │ │ └── main.cpp │ │ └── 戴老師實習課作業一.sln │ ├── 戴實習2 │ │ ├── 2.1-Print_Standard_Format - lab │ │ │ ├── 2.1-Print_Standard_Format - lab.txt │ │ │ ├── 2.1-Print_Standard_Format - lab.vcxproj │ │ │ ├── 2.1-Print_Standard_Format - lab.vcxproj.filters │ │ │ ├── 2.1-Print_Standard_Format.docx │ │ │ ├── 2.2-Adding_Large_Numbers.docx │ │ │ ├── 2.3-Compute_The_Tax.docx │ │ │ └── main.cpp │ │ ├── 2.2-Adding_Large_Numbers - lab │ │ │ ├── 2.2-Adding_Large_Numbers - lab.txt │ │ │ ├── 2.2-Adding_Large_Numbers - lab.vcxproj │ │ │ ├── 2.2-Adding_Large_Numbers - lab.vcxproj.filters │ │ │ └── main.cpp │ │ ├── 2.3-Compute_The_Tax - lab │ │ │ ├── 2.3-Compute_The_Tax - lab.txt │ │ │ ├── 2.3-Compute_The_Tax - lab.vcxproj │ │ │ ├── 2.3-Compute_The_Tax - lab.vcxproj.filters │ │ │ └── main.cpp │ │ └── 戴老師實習課作業二.sln │ ├── 戴實習3 │ │ ├── 3.1-CaesarCipher-Lab │ │ │ ├── 01-CaesarCipher.docx │ │ │ ├── 3.1-CaesarCipher-Lab.txt │ │ │ ├── 3.1-CaesarCipher-Lab.vcxproj │ │ │ ├── 3.1-CaesarCipher-Lab.vcxproj.filters │ │ │ └── main.cpp │ │ ├── 3.2-RowTranspositionCipher-Lab │ │ │ ├── 02-RowTranspositionCipher.docx │ │ │ ├── 3.2-RowTranspositionCipher-Lab.txt │ │ │ ├── 3.2-RowTranspositionCipher-Lab.vcxproj │ │ │ ├── 3.2-RowTranspositionCipher-Lab.vcxproj.filters │ │ │ └── main.cpp │ │ ├── 3.3-PlayfairCipher-Lab │ │ │ ├── 03-PlayfairCipher.docx │ │ │ ├── 3.3-PlayfairCipher-Lab.txt │ │ │ ├── 3.3-PlayfairCipher-Lab.vcxproj │ │ │ ├── 3.3-PlayfairCipher-Lab.vcxproj.filters │ │ │ └── main.cpp │ │ └── O-戴-實習課-作業三.sln │ ├── 戴實習4 │ │ ├── 4.1-Collatz_Conjecture-Lab │ │ │ ├── 4.1-Collatz_Conjecture-Lab.txt │ │ │ ├── 4.1-Collatz_Conjecture-Lab.vcxproj │ │ │ ├── 4.1-Collatz_Conjecture-Lab.vcxproj.filters │ │ │ ├── 4.1-Collatz_Conjecture.docx │ │ │ └── main.cpp │ │ ├── 4.2-BankAccount-Lab │ │ │ ├── 4.2-BankAccount-Lab.txt │ │ │ ├── 4.2-BankAccount-Lab.vcxproj │ │ │ ├── 4.2-BankAccount-Lab.vcxproj.filters │ │ │ ├── 4.2-BankAccount.docx │ │ │ ├── BankAccount.cpp │ │ │ ├── BankAccount.h │ │ │ └── main.cpp │ │ ├── 4.3-Greatest_Common_Divisor_Lab │ │ │ ├── 4.3-Greatest_Common_Divisor.docx │ │ │ ├── 4.3-Greatest_Common_Divisor_Lab.txt │ │ │ ├── 4.3-Greatest_Common_Divisor_Lab.vcxproj │ │ │ ├── 4.3-Greatest_Common_Divisor_Lab.vcxproj.filters │ │ │ └── main.cpp │ │ └── O-戴-實習課-作業四.sln │ ├── 戴實習5 │ │ ├── 6.1_Student Identify System_Lab │ │ │ ├── 6.1_Student Identify System_Lab.txt │ │ │ ├── 6.1_Student Identify System_Lab.vcxproj │ │ │ ├── 6.1_Student Identify System_Lab.vcxproj.filters │ │ │ ├── Student Identify System.docx │ │ │ └── main.cpp │ │ ├── 6.2_Student Info System_Lab │ │ │ ├── 6.2_Student Info System_Lab.txt │ │ │ ├── 6.2_Student Info System_Lab.vcxproj │ │ │ ├── 6.2_Student Info System_Lab.vcxproj.filters │ │ │ ├── Student Info System.docx │ │ │ └── main.cpp │ │ ├── 6.3_Student Course System_Lab │ │ │ ├── 6.3_Student Course System_Lab.txt │ │ │ ├── 6.3_Student Course System_Lab.vcxproj │ │ │ ├── 6.3_Student Course System_Lab.vcxproj.filters │ │ │ ├── Student Score System.docx │ │ │ └── main.cpp │ │ └── O-戴-實習課-作業五.sln │ ├── 戴實習6 │ │ ├── 5.1-Input_Output_Lab │ │ │ ├── 5.1-Input_Output.docx │ │ │ ├── 5.1-Input_Output_Lab.txt │ │ │ ├── 5.1-Input_Output_Lab.vcxproj │ │ │ ├── 5.1-Input_Output_Lab.vcxproj.filters │ │ │ └── main.cpp │ │ ├── 5.2-CPU_Bit_Growth_Lab │ │ │ ├── 5.2-CPU_Bit_Growth.docx │ │ │ ├── 5.2-CPU_Bit_Growth_Lab.txt │ │ │ ├── 5.2-CPU_Bit_Growth_Lab.vcxproj │ │ │ ├── 5.2-CPU_Bit_Growth_Lab.vcxproj.filters │ │ │ └── main.cpp │ │ ├── 5.3-Simple_Drawing_Program_Lab │ │ │ ├── 5.3-Simple_Drawing_Program.docx │ │ │ ├── 5.3-Simple_Drawing_Program_Lab.txt │ │ │ ├── 5.3-Simple_Drawing_Program_Lab.vcxproj │ │ │ ├── 5.3-Simple_Drawing_Program_Lab.vcxproj.filters │ │ │ └── main.cpp │ │ └── O-戴-實習課-作業六.sln │ ├── 戴實習7 │ │ ├── 7.1-Number_Game_Lab │ │ │ ├── 7.1-Number_Game.docx │ │ │ ├── 7.1-Number_Game_Lab.txt │ │ │ ├── 7.1-Number_Game_Lab.vcxproj │ │ │ ├── 7.1-Number_Game_Lab.vcxproj.filters │ │ │ ├── NumberGame.cpp │ │ │ ├── NumberGame.h │ │ │ ├── main.cpp │ │ │ └── number.txt │ │ ├── 7.2-N_Dim_Vector_Lab │ │ │ ├── 7.2-N_Dim_Vector.docx │ │ │ ├── 7.2-N_Dim_Vector_Lab.txt │ │ │ ├── 7.2-N_Dim_Vector_Lab.vcxproj │ │ │ ├── 7.2-N_Dim_Vector_Lab.vcxproj.filters │ │ │ ├── VecNf.cpp │ │ │ ├── VecNf.h │ │ │ └── main.cpp │ │ ├── 7.3-Observation_Diary_Lab │ │ │ ├── 7.3-Observation_Diary.docx │ │ │ ├── 7.3-Observation_Diary_Lab.txt │ │ │ ├── 7.3-Observation_Diary_Lab.vcxproj │ │ │ ├── 7.3-Observation_Diary_Lab.vcxproj.filters │ │ │ ├── Creature.cpp │ │ │ ├── Creature.h │ │ │ ├── Diary.cpp │ │ │ ├── Diary.h │ │ │ └── main.cpp │ │ └── O-戴-實習課-作業七.sln │ └── 戴實習8 │ │ ├── 8.1-Seven-segment_Display_Lab │ │ ├── 8.1-Seven-segment_Display.docx │ │ ├── 8.1-Seven-segment_Display_Lab.txt │ │ ├── 8.1-Seven-segment_Display_Lab.vcxproj │ │ ├── 8.1-Seven-segment_Display_Lab.vcxproj.filters │ │ └── main.cpp │ │ ├── 8.2-Levenshtein_Distance_Lab │ │ ├── 8.2-Levenshtein_Distance.docx │ │ ├── 8.2-Levenshtein_Distance_Lab.txt │ │ ├── 8.2-Levenshtein_Distance_Lab.vcxproj │ │ ├── 8.2-Levenshtein_Distance_Lab.vcxproj.filters │ │ └── main.cpp │ │ ├── 8.3-Cow_Calculation_Lab │ │ ├── 8.3-Cow_Calculation.docx │ │ ├── 8.3-Cow_Calculation_Lab.txt │ │ ├── 8.3-Cow_Calculation_Lab.vcxproj │ │ ├── 8.3-Cow_Calculation_Lab.vcxproj.filters │ │ └── main.cpp │ │ └── O-戴-實習課-作業八.sln ├── 期中期末 │ ├── 10802物件導向程式設計期中考 │ │ ├── 01-3DTRPG │ │ │ ├── 3DTRPG.docx │ │ │ ├── 3DTRPG.pdf │ │ │ ├── Icon_ │ │ │ ├── answer │ │ │ │ ├── Icon_ │ │ │ │ └── TRPG.cpp │ │ │ └── test-data │ │ │ │ ├── Icon_ │ │ │ │ ├── test1.in │ │ │ │ ├── test1.out │ │ │ │ ├── test2.in │ │ │ │ ├── test2.out │ │ │ │ ├── test3.in │ │ │ │ └── test3.out │ │ ├── 02-ArrayToInteger │ │ │ ├── ArrayToInteger.docx │ │ │ ├── ArrayToInteger.pdf │ │ │ ├── Icon_ │ │ │ ├── answer │ │ │ │ ├── Icon_ │ │ │ │ └── main.cpp │ │ │ ├── smaple_code │ │ │ │ ├── Atoi.h │ │ │ │ ├── Icon_ │ │ │ │ └── main.cpp │ │ │ └── test_data │ │ │ │ ├── Icon_ │ │ │ │ ├── test1.in │ │ │ │ ├── test1.out │ │ │ │ ├── test1.rp │ │ │ │ ├── test2.in │ │ │ │ ├── test2.out │ │ │ │ ├── test2.rp │ │ │ │ ├── test3.in │ │ │ │ ├── test3.out │ │ │ │ └── test3.rp │ │ ├── 03-PlayfairCipher │ │ │ ├── Icon_ │ │ │ ├── PlayfairCipher.docx │ │ │ ├── PlayfairCipher.pdf │ │ │ ├── answer │ │ │ │ ├── Icon_ │ │ │ │ └── PlayfairCipher.cpp │ │ │ └── test-data │ │ │ │ ├── Icon_ │ │ │ │ ├── test1.in │ │ │ │ ├── test1.out │ │ │ │ ├── test2.in │ │ │ │ ├── test2.out │ │ │ │ ├── test3.in │ │ │ │ └── test3.out │ │ ├── 04-Train │ │ │ ├── Icon_ │ │ │ ├── Train.docx │ │ │ ├── Train.pdf │ │ │ ├── answer │ │ │ │ ├── Icon_ │ │ │ │ └── Train │ │ │ │ │ ├── Car.cpp │ │ │ │ │ ├── Car.h │ │ │ │ │ ├── Circle.cpp │ │ │ │ │ ├── Circle.h │ │ │ │ │ ├── Cylinder.cpp │ │ │ │ │ ├── Cylinder.h │ │ │ │ │ ├── Icon_ │ │ │ │ │ ├── Source.cpp │ │ │ │ │ ├── Train.cpp │ │ │ │ │ ├── Train.h │ │ │ │ │ ├── Wheel.cpp │ │ │ │ │ └── Wheel.h │ │ │ └── test-data │ │ │ │ ├── Icon_ │ │ │ │ ├── test1.in │ │ │ │ ├── test1.out │ │ │ │ ├── test2.in │ │ │ │ ├── test2.out │ │ │ │ ├── test3.in │ │ │ │ └── test3.out │ │ ├── 05-DateCalculation │ │ │ ├── DateCalculation.docx │ │ │ ├── DateCalculation.pdf │ │ │ ├── Icon_ │ │ │ ├── answer │ │ │ │ ├── Date.cpp │ │ │ │ ├── Date.h │ │ │ │ ├── DateCalculation.cpp │ │ │ │ └── Icon_ │ │ │ ├── sample_code │ │ │ │ ├── Icon_ │ │ │ │ └── main.cpp │ │ │ └── test_data │ │ │ │ ├── Icon_ │ │ │ │ ├── input.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test1.in │ │ │ │ ├── test1.out │ │ │ │ ├── test1.rp │ │ │ │ ├── test2.in │ │ │ │ ├── test2.out │ │ │ │ ├── test2.rp │ │ │ │ ├── test3.in │ │ │ │ ├── test3.out │ │ │ │ └── test3.rp │ │ └── 06-Coastline │ │ │ ├── Coastline.docx │ │ │ ├── Coastline.pdf │ │ │ ├── Icon_ │ │ │ ├── answer │ │ │ ├── 06-Coastline.cpp │ │ │ └── Icon_ │ │ │ └── test-data │ │ │ ├── Icon_ │ │ │ ├── test1.in │ │ │ ├── test1.out │ │ │ ├── test2.in │ │ │ ├── test2.out │ │ │ ├── test3.in │ │ │ └── test3.out │ ├── 10802物件導向程式設計期末考 │ │ ├── 01--Library Database │ │ │ ├── Icon_ │ │ │ ├── Q1--Library Database.docx │ │ │ ├── answer │ │ │ │ ├── Icon_ │ │ │ │ └── main.cpp │ │ │ └── test_data │ │ │ │ ├── Icon_ │ │ │ │ ├── test1.in │ │ │ │ ├── test1.out │ │ │ │ ├── test2.in │ │ │ │ ├── test2.out │ │ │ │ ├── test3.in │ │ │ │ └── test3.out │ │ ├── 02--N Dim Vector │ │ │ ├── Icon_ │ │ │ ├── Q2--N Dim Vector.docx │ │ │ ├── answer │ │ │ │ ├── Icon_ │ │ │ │ ├── VecNf.h │ │ │ │ └── main.cpp │ │ │ └── test_data │ │ │ │ ├── Icon_ │ │ │ │ ├── test1.out │ │ │ │ ├── test1.rp │ │ │ │ ├── test2.out │ │ │ │ ├── test2.rp │ │ │ │ ├── test3.out │ │ │ │ └── test3.rp │ │ ├── 03--Relationship distance │ │ │ ├── Icon_ │ │ │ ├── Q3--Relationship distance.docx │ │ │ ├── answer │ │ │ │ ├── Icon_ │ │ │ │ └── main.cpp │ │ │ └── test_data │ │ │ │ ├── Icon_ │ │ │ │ ├── test1.in │ │ │ │ ├── test1.out │ │ │ │ ├── test2.in │ │ │ │ ├── test2.out │ │ │ │ ├── test3.in │ │ │ │ └── test3.out │ │ ├── 04--Highest-Ranking Straight │ │ │ ├── Icon_ │ │ │ ├── Q4--Highest-Ranking Straight.docx │ │ │ ├── answer │ │ │ │ ├── Icon_ │ │ │ │ └── main.cpp │ │ │ └── test_data │ │ │ │ ├── Icon_ │ │ │ │ ├── test1.in │ │ │ │ ├── test1.out │ │ │ │ ├── test2.in │ │ │ │ ├── test2.out │ │ │ │ ├── test3.in │ │ │ │ └── test3.out │ │ ├── 05--Big Numbers Remainder │ │ │ ├── Icon_ │ │ │ ├── Q5--Big Numbers Remainder.docx │ │ │ ├── answer │ │ │ │ ├── Icon_ │ │ │ │ └── main.cpp │ │ │ └── test_data │ │ │ │ ├── Icon_ │ │ │ │ ├── test1.in │ │ │ │ ├── test1.out │ │ │ │ ├── test2.in │ │ │ │ ├── test2.out │ │ │ │ ├── test3.in │ │ │ │ ├── test3.out │ │ │ │ ├── test4.in │ │ │ │ ├── test4.out │ │ │ │ ├── test5.in │ │ │ │ ├── test5.out │ │ │ │ ├── test6.in │ │ │ │ ├── test6.out │ │ │ │ ├── test7.in │ │ │ │ └── test7.out │ │ └── 06--Animal Kingdom_ │ │ │ ├── Icon_ │ │ │ ├── Q6--Animal Kingdom .docx │ │ │ ├── answer │ │ │ ├── Animal.h │ │ │ ├── Icon_ │ │ │ └── main.cpp │ │ │ └── test_data │ │ │ ├── Icon_ │ │ │ ├── test1.out │ │ │ ├── test1.rp │ │ │ ├── test2.out │ │ │ ├── test2.rp │ │ │ ├── test3.out │ │ │ └── test3.rp │ └── 10902物件導向程式設計期中考 │ │ ├── Q1 │ │ ├── NumberGame.h │ │ ├── Number_Game.docx │ │ └── main.cpp │ │ ├── Q2 │ │ ├── Shisensho.cpp │ │ └── Shisensho.docx │ │ ├── Q3 │ │ ├── ConnectFour.cpp │ │ └── ConnectFour.docx │ │ ├── Q4 │ │ ├── CountAreaSize.cpp │ │ └── CountAreaSize.docx │ │ ├── Q5 │ │ ├── BigInt.h │ │ ├── BigNumberDivision.docx │ │ └── main.cpp │ │ ├── Q6 │ │ ├── Buff.cpp │ │ ├── Buff.h │ │ ├── BuffSystem.docx │ │ ├── Character.cpp │ │ ├── Character.h │ │ └── main.cpp │ │ └── Q7 │ │ ├── Ghost Leg.docx │ │ └── GhostLeg.cpp └── 正課 │ ├── 戴1 │ ├── 1.1-Compute the square root │ │ ├── 1.1-Compute the square root.txt │ │ ├── 1.1-Compute the square root.vcxproj │ │ ├── 1.1-Compute the square root.vcxproj.filters │ │ ├── 1.1-ComputeSQRT.docx │ │ └── main.cpp │ ├── 1.2-ComputeHMS │ │ ├── 1.2-ComputeHMS.docx │ │ ├── 1.2-ComputeHMS.txt │ │ ├── 1.2-ComputeHMS.vcxproj │ │ ├── 1.2-ComputeHMS.vcxproj.filters │ │ ├── Source.cpp │ │ └── main.cpp │ ├── 作業一解答-20210423.zip │ └── 戴老師正課作業一.sln │ ├── 戴10 │ ├── 10.1-Combinations │ │ ├── 10.1-Combinations.docx │ │ ├── 10.1-Combinations.txt │ │ ├── 10.1-Combinations.vcxproj │ │ ├── 10.1-Combinations.vcxproj.filters │ │ ├── PrintCombination.cpp │ │ ├── PrintCombination.h │ │ └── main.cpp │ ├── 10.2-Word_Game │ │ ├── 10.2-Word_Game.docx │ │ ├── 10.2-Word_Game.txt │ │ ├── 10.2-Word_Game.vcxproj │ │ ├── 10.2-Word_Game.vcxproj.filters │ │ ├── main.cpp │ │ └── words.txt │ ├── O-戴-正課-作業十.sln │ └── 作業十解答-20210423.zip │ ├── 戴11 │ ├── 11.1-Class_Inheritance │ │ ├── 11.1-Class_Inheritance.docx │ │ ├── 11.1-Class_Inheritance.txt │ │ ├── 11.1-Class_Inheritance.vcxproj │ │ ├── 11.1-Class_Inheritance.vcxproj.filters │ │ ├── Document.h │ │ ├── Email.h │ │ ├── File.h │ │ └── main.cpp │ ├── 11.2-Matrix_Multiplication │ │ ├── 11.2-Matrix_Multiplication.docx │ │ ├── 11.2-Matrix_Multiplication.txt │ │ ├── 11.2-Matrix_Multiplication.vcxproj │ │ ├── 11.2-Matrix_Multiplication.vcxproj.filters │ │ ├── Matrix.h │ │ └── main.cpp │ ├── O-戴-正課-作業十一.sln │ └── 作業十一解答-20210423.zip │ ├── 戴12 │ ├── 12.1-Memory_Simulator │ │ ├── 12.1-Memory_Simulator.docx │ │ ├── 12.1-Memory_Simulator.txt │ │ ├── 12.1-Memory_Simulator.vcxproj │ │ ├── 12.1-Memory_Simulator.vcxproj.filters │ │ └── main.cpp │ ├── O-戴-正課-作業十二.sln │ └── 作業十二解答-20210423.zip │ ├── 戴13 │ ├── 13.1-Template_Binary_Search │ │ ├── 13.1-Template_Binary_Search.docx │ │ ├── 13.1-Template_Binary_Search.txt │ │ ├── 13.1-Template_Binary_Search.vcxproj │ │ ├── 13.1-Template_Binary_Search.vcxproj.filters │ │ ├── Template.h │ │ └── main.cpp │ ├── 13.2-AbsoluteValue │ │ ├── 13.2-AbsoluteValue.docx │ │ ├── 13.2-AbsoluteValue.txt │ │ ├── 13.2-AbsoluteValue.vcxproj │ │ ├── 13.2-AbsoluteValue.vcxproj.filters │ │ ├── Template.h │ │ └── main.cpp │ ├── O-戴-正課-作業十三.sln │ └── 作業十三解答-20210423.zip │ ├── 戴14 │ ├── 14.1-ATM │ │ ├── 14.1-ATM.docx │ │ ├── 14.1-ATM.txt │ │ ├── 14.1-ATM.vcxproj │ │ ├── 14.1-ATM.vcxproj.filters │ │ ├── Account.h │ │ └── main.cpp │ ├── 15.2-Library_Database │ │ ├── 15.2--Library Database.docx │ │ ├── 15.2-Library_Database.txt │ │ ├── 15.2-Library_Database.vcxproj │ │ ├── 15.2-Library_Database.vcxproj.filters │ │ └── main.cpp │ ├── O-戴-正課-作業十四.sln │ └── 作業十四解答-20210423.zip │ ├── 戴15 │ ├── 15.1-Set_Exercise │ │ ├── 15.1-Set_Exercise.docx │ │ ├── 15.1-Set_Exercise.txt │ │ ├── 15.1-Set_Exercise.vcxproj │ │ ├── 15.1-Set_Exercise.vcxproj.filters │ │ ├── main.cpp │ │ └── name.txt │ ├── O-戴-正課-作業十五.sln │ └── 作業十五解答-20210423.zip │ ├── 戴2 │ ├── 2.1-Computes the average and standard deviation │ │ ├── 2.1-Compute_Standard_Deviation.docx │ │ ├── 2.1-Computes the average and standard deviation.txt │ │ ├── 2.1-Computes the average and standard deviation.vcxproj │ │ ├── 2.1-Computes the average and standard deviation.vcxproj.filters │ │ └── main.cpp │ ├── 2.2-Leaderboard │ │ ├── 2.2-Leaderboard.docx │ │ ├── 2.2-Leaderboard.txt │ │ ├── 2.2-Leaderboard.vcxproj │ │ ├── 2.2-Leaderboard.vcxproj.filters │ │ └── main.cpp │ ├── 2.3-Square Code │ │ ├── 2.3-Square Code.txt │ │ ├── 2.3-Square Code.vcxproj │ │ ├── 2.3-Square Code.vcxproj.filters │ │ ├── 2.3-Square_Code.docx │ │ └── main.cpp │ ├── 作業二解答-20210423.zip │ └── 戴老師正課作業二.sln │ ├── 戴3 │ ├── 3.1-Occurrenc Counting │ │ ├── 3.1-Occurrenc Counting.txt │ │ ├── 3.1-Occurrenc Counting.vcxproj │ │ ├── 3.1-Occurrenc Counting.vcxproj.filters │ │ ├── 3.1-Occurrenc_Counting.docx │ │ └── main.cpp │ ├── 3.2-Text-based histogram │ │ ├── 3.2-Text-based histogram.txt │ │ ├── 3.2-Text-based histogram.vcxproj │ │ ├── 3.2-Text-based histogram.vcxproj.filters │ │ ├── 3.2-TextBased_Histogram.docx │ │ └── main.cpp │ ├── 作業三解答-20210423.zip │ └── 戴老師正課作業三.sln │ ├── 戴4 │ ├── 4.1-Class Point in plane │ │ ├── 4.1-Class Point in plane.txt │ │ ├── 4.1-Class Point in plane.vcxproj │ │ ├── 4.1-Class Point in plane.vcxproj.filters │ │ ├── 4.1-Class_Point_In_Plane.docx │ │ ├── Point.cpp │ │ ├── Point.h │ │ └── main.cpp │ ├── 4.2-Fraction │ │ ├── 4.2-Fraction.docx │ │ ├── 4.2-Fraction.txt │ │ ├── 4.2-Fraction.vcxproj │ │ ├── 4.2-Fraction.vcxproj.filters │ │ ├── Fraction.cpp │ │ ├── Fraction.h │ │ └── main.cpp │ ├── O-戴-正課-作業四.sln │ └── 作業四解答-20210423.zip │ ├── 戴5 │ ├── 5.1-Hot_Dog_Stand │ │ ├── 5.1-Hot_Dog_Stand.docx │ │ ├── 5.1-Hot_Dog_Stand.txt │ │ ├── 5.1-Hot_Dog_Stand.vcxproj │ │ ├── 5.1-Hot_Dog_Stand.vcxproj.filters │ │ ├── HotDogStand.cpp │ │ ├── HotDogStand.h │ │ └── main.cpp │ ├── 5.2-Design_Month_Class │ │ ├── 5.2-Design_Month_Class.docx │ │ ├── 5.2-Design_Month_Class.txt │ │ ├── 5.2-Design_Month_Class.vcxproj │ │ ├── 5.2-Design_Month_Class.vcxproj.filters │ │ ├── Month.cpp │ │ ├── Month.h │ │ └── main.cpp │ ├── O-戴-正課-作業五.sln │ └── 作業五解答-20210423.zip │ ├── 戴6 │ ├── 6.1-Complex │ │ ├── 6.1-Complex.docx │ │ ├── 6.1-Complex.txt │ │ ├── 6.1-Complex.vcxproj │ │ ├── 6.1-Complex.vcxproj.filters │ │ ├── Complex.cpp │ │ ├── Complex.h │ │ └── main.cpp │ ├── 6.2-Prime_Number │ │ ├── 6.2-Prime_Number.docx │ │ ├── 6.2-Prime_Number.txt │ │ ├── 6.2-Prime_Number.vcxproj │ │ ├── 6.2-Prime_Number.vcxproj.filters │ │ ├── PrimeNumber.cpp │ │ ├── PrimeNumber.h │ │ └── main.cpp │ ├── O-戴-正課-作業六.sln │ └── 作業六解答-20210423.zip │ ├── 戴7 │ ├── 7.1-Form_Word │ │ ├── 7.1-Form_Word.docx │ │ ├── 7.1-Form_Word.txt │ │ ├── 7.1-Form_Word.vcxproj │ │ ├── 7.1-Form_Word.vcxproj.filters │ │ ├── Form.cpp │ │ ├── Form.h │ │ └── main.cpp │ ├── 7.2-Array_To_Integer │ │ ├── 7.2-Array_To_Integer.docx │ │ ├── 7.2-Array_To_Integer.txt │ │ ├── 7.2-Array_To_Integer.vcxproj │ │ ├── 7.2-Array_To_Integer.vcxproj.filters │ │ ├── Atoi.cpp │ │ ├── Atoi.h │ │ └── main.cpp │ ├── O-戴-正課-作業七.sln │ └── 作業七解答-20210423.zip │ ├── 戴8 │ ├── 8.1-Design_Polynomial_Class │ │ ├── 8.1-Design_Polynomial_Class.docx │ │ ├── 8.1-Design_Polynomial_Class.txt │ │ ├── 8.1-Design_Polynomial_Class.vcxproj │ │ ├── 8.1-Design_Polynomial_Class.vcxproj.filters │ │ ├── Polynomial.cpp │ │ ├── Polynomial.h │ │ └── main.cpp │ ├── O-戴-正課-作業八.sln │ └── 作業八解答-20210423.zip │ └── 戴9 │ ├── 9.1-TheTranslationMachine │ ├── 9.1-TheTranslationMachine.docx │ ├── 9.1-TheTranslationMachine.txt │ ├── 9.1-TheTranslationMachine.vcxproj │ ├── 9.1-TheTranslationMachine.vcxproj.filters │ └── main.cpp │ ├── 9.2-Namespace │ ├── 9.2-Namespace.docx │ ├── 9.2-Namespace.txt │ ├── 9.2-Namespace.vcxproj │ ├── 9.2-Namespace.vcxproj.filters │ ├── Password.h │ ├── User.h │ └── main.cpp │ ├── O-戴-正課-作業九.sln │ └── 作業九解答-20210423.zip └── 賴祐吉 ├── 實習 ├── 賴實習1 │ ├── 1.1-Pattern_Output-lab │ │ ├── 1.1-Pattern_Output-lab.txt │ │ ├── 1.1-Pattern_Output-lab.vcxproj │ │ ├── 1.1-Pattern_Output-lab.vcxproj.filters │ │ ├── 1.1-Pattern_Output.docx │ │ └── main.cpp │ ├── 1.2-Input_Output-lab │ │ ├── 1.2-Input_Output-lab.txt │ │ ├── 1.2-Input_Output-lab.vcxproj │ │ ├── 1.2-Input_Output-lab.vcxproj.filters │ │ ├── 1.2-Input_Output.docx │ │ └── main.cpp │ ├── 1.3-Compute_Sphere_Volume-lab │ │ ├── 1.3-Compute_Sphere_Volume-lab.txt │ │ ├── 1.3-Compute_Sphere_Volume-lab.vcxproj │ │ ├── 1.3-Compute_Sphere_Volume-lab.vcxproj.filters │ │ ├── 1.3-Compute_Sphere_Volume.docx │ │ └── main.cpp │ └── 賴老師實習課作業一.sln └── 賴實習2 │ ├── 2.1-Print_Standard_Format - lab │ ├── 2.1-Print_Standard_Format - lab.txt │ ├── 2.1-Print_Standard_Format - lab.vcxproj │ ├── 2.1-Print_Standard_Format - lab.vcxproj.filters │ ├── 2.1-Print_Standard_Format.docx │ ├── 2.2-Adding_Large_Numbers.docx │ ├── 2.3-Compute_The_Tax.docx │ └── main.cpp │ ├── 2.2-Adding_Large_Numbers - lab │ ├── 2.2-Adding_Large_Numbers - lab.txt │ ├── 2.2-Adding_Large_Numbers - lab.vcxproj │ ├── 2.2-Adding_Large_Numbers - lab.vcxproj.filters │ └── main.cpp │ ├── 2.3-Compute_The_Tax - lab │ ├── 2.3-Compute_The_Tax - lab.txt │ ├── 2.3-Compute_The_Tax - lab.vcxproj │ ├── 2.3-Compute_The_Tax - lab.vcxproj.filters │ ├── 2.3-Compute_The_Tax.docx │ └── main.cpp │ └── 賴老師實習課作業二.sln └── 正課 ├── hw10 ├── 11.1-Class_Inheritance │ ├── 11.1-Class_Inheritance.docx │ ├── 11.1-Class_Inheritance.txt │ ├── 11.1-Class_Inheritance.vcxproj │ ├── 11.1-Class_Inheritance.vcxproj.filters │ ├── Document.h │ ├── Email.h │ ├── File.h │ └── main.cpp ├── 11.2-Matrix_Multiplication │ ├── 11.2-Matrix_Multiplication.docx │ ├── 11.2-Matrix_Multiplication.txt │ ├── 11.2-Matrix_Multiplication.vcxproj │ ├── 11.2-Matrix_Multiplication.vcxproj.filters │ └── main.cpp └── E-賴-正課-作業十.sln ├── hw11 ├── 12.1-Memory_Simulator │ ├── 12.1-Memory_Simulator.docx │ ├── 12.1-Memory_Simulator.txt │ ├── 12.1-Memory_Simulator.vcxproj │ ├── 12.1-Memory_Simulator.vcxproj.filters │ └── main.cpp └── E-賴-正課-作業十一.sln ├── hw12 ├── 13.1-Template_Binary_Search │ ├── 13.1-Template_Binary_Search.docx │ ├── 13.1-Template_Binary_Search.txt │ ├── 13.1-Template_Binary_Search.vcxproj │ ├── 13.1-Template_Binary_Search.vcxproj.filters │ ├── Template.h │ └── main.cpp ├── 13.2-AbsoluteValue │ ├── 13.2-AbsoluteValue.docx │ ├── 13.2-AbsoluteValue.txt │ ├── 13.2-AbsoluteValue.vcxproj │ ├── 13.2-AbsoluteValue.vcxproj.filters │ ├── Template.h │ └── main.cpp └── E-賴-正課-作業十二.sln ├── hw6 ├── 7.1-Form_Word │ ├── 7.1-Form_Word.docx │ ├── 7.1-Form_Word.txt │ ├── 7.1-Form_Word.vcxproj │ ├── 7.1-Form_Word.vcxproj.filters │ ├── Form.h │ ├── Source.cpp │ ├── main.cpp │ └── words.txt ├── 7.2-Array_To_Integer │ ├── 7.2-Array_To_Integer.docx │ ├── 7.2-Array_To_Integer.txt │ ├── 7.2-Array_To_Integer.vcxproj │ ├── 7.2-Array_To_Integer.vcxproj.filters │ ├── Atoi.cpp │ ├── Atoi.h │ └── main.cpp └── E-賴-正課-作業六.sln ├── hw7 ├── 8.1-Design_Polynomial_Class │ ├── 8.1-Design_Polynomial_Class.docx │ ├── 8.1-Design_Polynomial_Class.txt │ ├── 8.1-Design_Polynomial_Class.vcxproj │ ├── 8.1-Design_Polynomial_Class.vcxproj.filters │ ├── Polynomial.cpp │ ├── Polynomial.h │ └── main.cpp └── E-賴-正課-作業七.sln ├── hw8 ├── 9.1-TheTranslationMachine │ ├── 9.1-TheTranslationMachine.docx │ ├── 9.1-TheTranslationMachine.txt │ ├── 9.1-TheTranslationMachine.vcxproj │ ├── 9.1-TheTranslationMachine.vcxproj.filters │ └── main.cpp ├── 9.2-Namespace │ ├── 9.2-Namespace.docx │ ├── 9.2-Namespace.txt │ ├── 9.2-Namespace.vcxproj │ ├── 9.2-Namespace.vcxproj.filters │ ├── Password.h │ ├── User.h │ └── main.cpp └── E-賴-正課-作業八.sln ├── hw9 ├── 10.1-Combinations │ ├── 10.1-Combinations.docx │ ├── 10.1-Combinations.txt │ ├── 10.1-Combinations.vcxproj │ ├── 10.1-Combinations.vcxproj.filters │ ├── PrintCombination.cpp │ ├── PrintCombination.h │ └── main.cpp ├── 10.2-Word_Game │ ├── 10.2-Word_Game.docx │ ├── 10.2-Word_Game.txt │ ├── 10.2-Word_Game.vcxproj │ ├── 10.2-Word_Game.vcxproj.filters │ ├── main.cpp │ └── words.txt └── E-賴-正課-作業九.sln ├── 賴1 ├── 1.1-Compute the square root │ ├── 1.1-Compute the square root.txt │ ├── 1.1-Compute the square root.vcxproj │ ├── 1.1-Compute the square root.vcxproj.filters │ ├── 1.1-ComputeSQRT.docx │ └── main.cpp ├── 1.2-ComputeHMS │ ├── 1.2-ComputeHMS.docx │ ├── 1.2-ComputeHMS.txt │ ├── 1.2-ComputeHMS.vcxproj │ ├── 1.2-ComputeHMS.vcxproj.filters │ └── Source.cpp ├── 2.1-Computes the average and standard deviation │ ├── 2.1-Compute_Standard_Deviation.docx │ ├── 2.1-Computes the average and standard deviation.txt │ ├── 2.1-Computes the average and standard deviation.vcxproj │ ├── 2.1-Computes the average and standard deviation.vcxproj.filters │ └── Source.cpp ├── 2.2-Leaderboard │ ├── 2.2-Leaderboard.docx │ ├── 2.2-Leaderboard.txt │ ├── 2.2-Leaderboard.vcxproj │ ├── 2.2-Leaderboard.vcxproj.filters │ └── Source.cpp ├── 2.3-Square Code │ ├── 2.3-Square Code.txt │ ├── 2.3-Square Code.vcxproj │ ├── 2.3-Square Code.vcxproj.filters │ └── 2.3-Square_Code.docx └── 賴教授正課作業.sln ├── 賴2 ├── 3.1-Occurrenc Counting │ ├── 3.1-Occurrenc Counting.txt │ ├── 3.1-Occurrenc Counting.vcxproj │ ├── 3.1-Occurrenc Counting.vcxproj.filters │ ├── 3.1-Occurrenc_Counting.docx │ └── main.cpp ├── 3.2-Text-based histogram │ ├── 3.2-Text-based histogram.txt │ ├── 3.2-Text-based histogram.vcxproj │ ├── 3.2-Text-based histogram.vcxproj.filters │ ├── 3.2-TextBased_Histogram.docx │ └── main.cpp └── 賴老師正課作業二.sln ├── 賴3 ├── 4.1-Class Point in plane │ ├── 4.1-Class Point in plane.txt │ ├── 4.1-Class Point in plane.vcxproj │ ├── 4.1-Class Point in plane.vcxproj.filters │ ├── 4.1-Class_Point_In_Plane.docx │ ├── Point.cpp │ ├── Point.h │ ├── Source.cpp │ └── sample.out ├── 4.2-Fraction │ ├── 4.2-Fraction.docx │ ├── 4.2-Fraction.txt │ ├── 4.2-Fraction.vcxproj │ ├── 4.2-Fraction.vcxproj.filters │ ├── Fraction.cpp │ ├── Fraction.h │ ├── sampleMain.cpp │ └── sampleOutput.txt └── 賴老師正課作業三.sln ├── 賴4 ├── 5.1-Hot_Dog_Stand │ ├── 5.1-Hot_Dog_Stand.docx │ ├── 5.1-Hot_Dog_Stand.txt │ ├── 5.1-Hot_Dog_Stand.vcxproj │ ├── 5.1-Hot_Dog_Stand.vcxproj.filters │ ├── HotDogStand.cpp │ ├── HotDogStand.h │ └── main.cpp ├── 5.2-Design_Month_Class │ ├── 5.2-Design_Month_Class.docx │ ├── 5.2-Design_Month_Class.txt │ ├── 5.2-Design_Month_Class.vcxproj │ ├── 5.2-Design_Month_Class.vcxproj.filters │ ├── Month.cpp │ ├── Month.h │ └── main.cpp └── E-賴-正課-作業四.sln └── 賴5 ├── 6.1-Complex ├── 6.1-Complex.docx ├── 6.1-Complex.txt ├── 6.1-Complex.vcxproj ├── 6.1-Complex.vcxproj.filters ├── Complex.h └── main.cpp ├── 6.2-Prime_Number ├── 6.2-Prime_Number.docx ├── 6.2-Prime_Number.txt ├── 6.2-Prime_Number.vcxproj ├── 6.2-Prime_Number.vcxproj.filters ├── PrimeNumber.h └── main.cpp └── E-賴-正課-作業五.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NTUST_OOP_1082 2 | ### 戴文凱ㄉ 3 | mew 4 | -------------------------------------------------------------------------------- /台科物件導向/A star maze/A star maze.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/A star maze/A star maze.sln -------------------------------------------------------------------------------- /台科物件導向/A star maze/A star maze/A star maze.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/A star maze/A star maze/A star maze.vcxproj -------------------------------------------------------------------------------- /台科物件導向/A star maze/A star maze/A star maze.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/A star maze/A star maze/A star maze.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/A star maze/A star maze/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/A star maze/A star maze/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/A star maze/A star maze/maze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/A star maze/A star maze/maze.txt -------------------------------------------------------------------------------- /台科物件導向/WASD_game/WASD_game.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/WASD_game/WASD_game.sln -------------------------------------------------------------------------------- /台科物件導向/WASD_game/WASD_game/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/WASD_game/WASD_game/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/WASD_game/WASD_game/WASD_game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/WASD_game/WASD_game/WASD_game.vcxproj -------------------------------------------------------------------------------- /台科物件導向/WASD_game/WASD_game/WASD_game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/WASD_game/WASD_game/WASD_game.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/dungeon/dungeon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/dungeon/dungeon.sln -------------------------------------------------------------------------------- /台科物件導向/dungeon/dungeon/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/dungeon/dungeon/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/dungeon/dungeon/dungeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/dungeon/dungeon/dungeon.cpp -------------------------------------------------------------------------------- /台科物件導向/dungeon/dungeon/dungeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/dungeon/dungeon/dungeon.h -------------------------------------------------------------------------------- /台科物件導向/dungeon/dungeon/dungeon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/dungeon/dungeon/dungeon.vcxproj -------------------------------------------------------------------------------- /台科物件導向/dungeon/dungeon/dungeon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/dungeon/dungeon/dungeon.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/CPP_Project.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/CPP_Project.exe -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/__MACOSX/._CPP_Project.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/__MACOSX/._CPP_Project.exe -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/__MACOSX/._character1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/__MACOSX/._character1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/__MACOSX/._input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/__MACOSX/._input1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/__MACOSX/._map1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/__MACOSX/._map1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/__MACOSX/._monster1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/__MACOSX/._monster1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/__MACOSX/._output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/__MACOSX/._output1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/__MACOSX/._期末專案.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/__MACOSX/._期末專案.pptx -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/__MACOSX/._遊戲規格表.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/__MACOSX/._遊戲規格表.xlsx -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/character1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/character1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven.sln -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Character.cpp -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Character.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Coord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Coord.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Gloom_Haven.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Gloom_Haven.cpp -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Gloom_Haven.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Gloom_Haven.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Input.cpp -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Input.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Map.cpp -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Map.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Monster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Monster.cpp -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/Monster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/Monster.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/a_star_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/a_star_path.cpp -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/a_star_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/a_star_path.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/basic.cpp -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/basic.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/character1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/character1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/character3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/character3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/enum.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/gloomhaven.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/gloomhaven.vcxproj -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/gloomhaven.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/gloomhaven.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/input1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/input3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/input3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/main.cpp -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/map1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/map1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/map3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/map3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/monster1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/monster1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/monster3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/monster3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/output1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/output3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/read_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/read_file.cpp -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/gloomhaven/read_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/gloomhaven/read_file.h -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/input1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/map1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/map1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/monster1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/monster1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/output1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/test.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/test3/character3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/test3/character3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/test3/input3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/test3/input3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/test3/map3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/test3/map3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/test3/monster3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/test3/monster3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/test3/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/test3/output3.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/tmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/tmp.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/CPP_Project.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/CPP_Project.exe -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/__MACOSX/._CPP_Project.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/__MACOSX/._CPP_Project.exe -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/__MACOSX/._character1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/__MACOSX/._character1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/__MACOSX/._input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/__MACOSX/._input1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/__MACOSX/._map1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/__MACOSX/._map1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/__MACOSX/._monster1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/__MACOSX/._monster1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/__MACOSX/._output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/__MACOSX/._output1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/__MACOSX/._期末專案.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/__MACOSX/._期末專案.pptx -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/__MACOSX/._遊戲規格表.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/__MACOSX/._遊戲規格表.xlsx -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/character1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/character1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/input1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/map1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/map1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/monster1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/monster1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/output1.txt -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/期末專案.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/期末專案.pptx -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/txt備份/遊戲規格表.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/txt備份/遊戲規格表.xlsx -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/期末專案.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/期末專案.pptx -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/期末專案_Gloomhaven.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/期末專案_Gloomhaven.zip -------------------------------------------------------------------------------- /台科物件導向/gloomhaven/遊戲規格表.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/gloomhaven/遊戲規格表.xlsx -------------------------------------------------------------------------------- /台科物件導向/new_big_number_project/new_big_number_project.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/new_big_number_project/new_big_number_project.sln -------------------------------------------------------------------------------- /台科物件導向/new_big_number_project/new_big_number_project/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/new_big_number_project/new_big_number_project/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/new_big_number_project/new_big_number_project/big_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/new_big_number_project/new_big_number_project/big_number.cpp -------------------------------------------------------------------------------- /台科物件導向/new_big_number_project/new_big_number_project/big_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/new_big_number_project/new_big_number_project/big_number.h -------------------------------------------------------------------------------- /台科物件導向/stack_maze/stack_maze.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/stack_maze/stack_maze.sln -------------------------------------------------------------------------------- /台科物件導向/stack_maze/stack_maze/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/stack_maze/stack_maze/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/stack_maze/stack_maze/maze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/stack_maze/stack_maze/maze.txt -------------------------------------------------------------------------------- /台科物件導向/stack_maze/stack_maze/stack_maze.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/stack_maze/stack_maze/stack_maze.vcxproj -------------------------------------------------------------------------------- /台科物件導向/stack_maze/stack_maze/stack_maze.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/stack_maze/stack_maze/stack_maze.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.1-Pattern_Output-lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/1.2-Input_Output.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/1.2-Input_Output.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.2-Input_Output-lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.3-Compute_Sphere_Volume-lab/1.3-Compute_Sphere_Volume.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.3-Compute_Sphere_Volume-lab/1.3-Compute_Sphere_Volume.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/1.3-Compute_Sphere_Volume-lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/1.3-Compute_Sphere_Volume-lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習1/戴老師實習課作業一.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習1/戴老師實習課作業一.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習2/2.1-Print_Standard_Format - lab/2.1-Print_Standard_Format.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習2/2.1-Print_Standard_Format - lab/2.1-Print_Standard_Format.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習2/2.1-Print_Standard_Format - lab/2.2-Adding_Large_Numbers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習2/2.1-Print_Standard_Format - lab/2.2-Adding_Large_Numbers.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習2/2.1-Print_Standard_Format - lab/2.3-Compute_The_Tax.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習2/2.1-Print_Standard_Format - lab/2.3-Compute_The_Tax.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習2/2.1-Print_Standard_Format - lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習2/2.1-Print_Standard_Format - lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習2/2.2-Adding_Large_Numbers - lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習2/2.2-Adding_Large_Numbers - lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax - lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax - lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax - lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax - lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習2/2.3-Compute_The_Tax - lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習2/2.3-Compute_The_Tax - lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習2/戴老師實習課作業二.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習2/戴老師實習課作業二.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/01-CaesarCipher.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/01-CaesarCipher.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/3.1-CaesarCipher-Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/3.1-CaesarCipher-Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/3.1-CaesarCipher-Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/3.1-CaesarCipher-Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/3.1-CaesarCipher-Lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/3.1-CaesarCipher-Lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.1-CaesarCipher-Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.2-RowTranspositionCipher-Lab/02-RowTranspositionCipher.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.2-RowTranspositionCipher-Lab/02-RowTranspositionCipher.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.2-RowTranspositionCipher-Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.2-RowTranspositionCipher-Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/03-PlayfairCipher.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/03-PlayfairCipher.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/3.3-PlayfairCipher-Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/3.3-PlayfairCipher-Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/3.3-PlayfairCipher-Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/3.3-PlayfairCipher-Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/3.3-PlayfairCipher-Lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/3.3-PlayfairCipher-Lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/3.3-PlayfairCipher-Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習3/O-戴-實習課-作業三.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習3/O-戴-實習課-作業三.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.1-Collatz_Conjecture-Lab/4.1-Collatz_Conjecture-Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.1-Collatz_Conjecture-Lab/4.1-Collatz_Conjecture-Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.1-Collatz_Conjecture-Lab/4.1-Collatz_Conjecture-Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.1-Collatz_Conjecture-Lab/4.1-Collatz_Conjecture-Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.1-Collatz_Conjecture-Lab/4.1-Collatz_Conjecture.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.1-Collatz_Conjecture-Lab/4.1-Collatz_Conjecture.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.1-Collatz_Conjecture-Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.1-Collatz_Conjecture-Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/4.2-BankAccount-Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/4.2-BankAccount-Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/4.2-BankAccount-Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/4.2-BankAccount-Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/4.2-BankAccount-Lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/4.2-BankAccount-Lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/4.2-BankAccount.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/4.2-BankAccount.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/BankAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/BankAccount.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/BankAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/BankAccount.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.2-BankAccount-Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/4.3-Greatest_Common_Divisor_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/4.3-Greatest_Common_Divisor_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習4/O-戴-實習課-作業四.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習4/O-戴-實習課-作業四.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習5/6.1_Student Identify System_Lab/Student Identify System.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習5/6.1_Student Identify System_Lab/Student Identify System.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習5/6.1_Student Identify System_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習5/6.1_Student Identify System_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習5/6.2_Student Info System_Lab/6.2_Student Info System_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習5/6.2_Student Info System_Lab/6.2_Student Info System_Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習5/6.2_Student Info System_Lab/Student Info System.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習5/6.2_Student Info System_Lab/Student Info System.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習5/6.2_Student Info System_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習5/6.2_Student Info System_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習5/6.3_Student Course System_Lab/Student Score System.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習5/6.3_Student Course System_Lab/Student Score System.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習5/6.3_Student Course System_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習5/6.3_Student Course System_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習5/O-戴-實習課-作業五.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習5/O-戴-實習課-作業五.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/5.1-Input_Output.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/5.1-Input_Output.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/5.1-Input_Output_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/5.1-Input_Output_Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/5.1-Input_Output_Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/5.1-Input_Output_Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/5.1-Input_Output_Lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/5.1-Input_Output_Lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.1-Input_Output_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/5.2-CPU_Bit_Growth.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/5.2-CPU_Bit_Growth.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/5.2-CPU_Bit_Growth_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/5.2-CPU_Bit_Growth_Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/5.2-CPU_Bit_Growth_Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/5.2-CPU_Bit_Growth_Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/5.2-CPU_Bit_Growth_Lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/5.2-CPU_Bit_Growth_Lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.2-CPU_Bit_Growth_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.3-Simple_Drawing_Program_Lab/5.3-Simple_Drawing_Program.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.3-Simple_Drawing_Program_Lab/5.3-Simple_Drawing_Program.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/5.3-Simple_Drawing_Program_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/5.3-Simple_Drawing_Program_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習6/O-戴-實習課-作業六.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習6/O-戴-實習課-作業六.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/7.1-Number_Game.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/7.1-Number_Game.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/7.1-Number_Game_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/7.1-Number_Game_Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/7.1-Number_Game_Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/7.1-Number_Game_Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/7.1-Number_Game_Lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/7.1-Number_Game_Lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/NumberGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/NumberGame.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/NumberGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/NumberGame.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.1-Number_Game_Lab/number.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/7.2-N_Dim_Vector.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/7.2-N_Dim_Vector.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/7.2-N_Dim_Vector_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/7.2-N_Dim_Vector_Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/7.2-N_Dim_Vector_Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/7.2-N_Dim_Vector_Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/7.2-N_Dim_Vector_Lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/7.2-N_Dim_Vector_Lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/VecNf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/VecNf.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/VecNf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/VecNf.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.2-N_Dim_Vector_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/7.3-Observation_Diary.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/7.3-Observation_Diary.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/7.3-Observation_Diary_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/7.3-Observation_Diary_Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/7.3-Observation_Diary_Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/7.3-Observation_Diary_Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/Creature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/Creature.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/Creature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/Creature.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/Diary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/Diary.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/Diary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/Diary.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/7.3-Observation_Diary_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習7/O-戴-實習課-作業七.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習7/O-戴-實習課-作業七.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/8.1-Seven-segment_Display_Lab/8.1-Seven-segment_Display.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/8.1-Seven-segment_Display_Lab/8.1-Seven-segment_Display.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/8.1-Seven-segment_Display_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/8.1-Seven-segment_Display_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/8.2-Levenshtein_Distance_Lab/8.2-Levenshtein_Distance.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/8.2-Levenshtein_Distance_Lab/8.2-Levenshtein_Distance.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/8.2-Levenshtein_Distance_Lab/8.2-Levenshtein_Distance_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/8.2-Levenshtein_Distance_Lab/8.2-Levenshtein_Distance_Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/8.2-Levenshtein_Distance_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/8.2-Levenshtein_Distance_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/8.3-Cow_Calculation_Lab/8.3-Cow_Calculation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/8.3-Cow_Calculation_Lab/8.3-Cow_Calculation.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/8.3-Cow_Calculation_Lab/8.3-Cow_Calculation_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/8.3-Cow_Calculation_Lab/8.3-Cow_Calculation_Lab.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/8.3-Cow_Calculation_Lab/8.3-Cow_Calculation_Lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/8.3-Cow_Calculation_Lab/8.3-Cow_Calculation_Lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/8.3-Cow_Calculation_Lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/8.3-Cow_Calculation_Lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/實習/戴實習8/O-戴-實習課-作業八.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/實習/戴實習8/O-戴-實習課-作業八.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/3DTRPG.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/3DTRPG.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/3DTRPG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/3DTRPG.pdf -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/answer/TRPG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/answer/TRPG.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test1.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test2.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test2.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test3.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/01-3DTRPG/test-data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/ArrayToInteger.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/ArrayToInteger.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/ArrayToInteger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/ArrayToInteger.pdf -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/answer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/answer/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/smaple_code/Atoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/smaple_code/Atoi.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/smaple_code/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/smaple_code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/smaple_code/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test1.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test1.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test1.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test2.in: -------------------------------------------------------------------------------- 1 | 46506 2 | -096504 3 | 66572 4 | 56400 5 | 00494 -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test2.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test2.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test2.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test3.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test3.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/02-ArrayToInteger/test_data/test3.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/PlayfairCipher.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/PlayfairCipher.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/PlayfairCipher.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/PlayfairCipher.pdf -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/answer/PlayfairCipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/answer/PlayfairCipher.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test1.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test2.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test2.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test3.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/03-PlayfairCipher/test-data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/Train.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/Train.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/Train.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/Train.pdf -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Car.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Car.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Car.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Circle.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Circle.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Cylinder.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Cylinder.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Train.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Train.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Train.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Wheel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Wheel.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Wheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/answer/Train/Wheel.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/test-data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/test-data/test1.in: -------------------------------------------------------------------------------- 1 | 6 2 | 100 30 40 3 | 5 4 | 5 1 5 | 1 29 6 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/test-data/test1.out: -------------------------------------------------------------------------------- 1 | 727445 2 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/test-data/test2.in: -------------------------------------------------------------------------------- 1 | 10 2 | 29 99 54 3 | 36 4 | 5 3 5 | 2 31 6 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/test-data/test2.out: -------------------------------------------------------------------------------- 1 | 1860226 2 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/test-data/test3.in: -------------------------------------------------------------------------------- 1 | 18 2 | 684 351 319 3 | 13 4 | 11 3 5 | 3 349 6 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/04-Train/test-data/test3.out: -------------------------------------------------------------------------------- 1 | 1381405083 2 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/DateCalculation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/DateCalculation.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/DateCalculation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/DateCalculation.pdf -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/answer/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/answer/Date.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/answer/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/answer/Date.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/answer/DateCalculation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/answer/DateCalculation.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/sample_code/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/sample_code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/sample_code/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/input.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/output.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test1.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test1.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test1.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test2.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test2.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test2.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test2.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test3.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test3.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/05-DateCalculation/test_data/test3.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/Coastline.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/Coastline.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/Coastline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/Coastline.pdf -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/answer/06-Coastline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/answer/06-Coastline.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test1.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test2.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test2.out: -------------------------------------------------------------------------------- 1 | 4 10 2 | 4 8 3 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test3.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期中考/06-Coastline/test-data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/Q1--Library Database.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/Q1--Library Database.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/answer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/answer/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test1.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test2.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test2.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test3.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/01--Library Database/test_data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/Q2--N Dim Vector.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/Q2--N Dim Vector.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/answer/VecNf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/answer/VecNf.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/answer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/answer/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test1.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test1.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test2.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test2.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test2.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test3.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/02--N Dim Vector/test_data/test3.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/answer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/answer/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test1.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test2.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test2.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test3.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/03--Relationship distance/test_data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/answer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/answer/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test1.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test2.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test2.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test3.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/04--Highest-Ranking Straight/test_data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/answer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/answer/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test1.in: -------------------------------------------------------------------------------- 1 | -7 3 -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test1.out: -------------------------------------------------------------------------------- 1 | -1 -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test2.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test2.out: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test3.in: -------------------------------------------------------------------------------- 1 | AAA BBB -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test3.out: -------------------------------------------------------------------------------- 1 | Input Error -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test4.in: -------------------------------------------------------------------------------- 1 | 123 456 765 -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test4.out: -------------------------------------------------------------------------------- 1 | Input Error -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test5.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test5.out: -------------------------------------------------------------------------------- 1 | 244999762 -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test6.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test6.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test6.out: -------------------------------------------------------------------------------- 1 | Input Error -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test7.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test7.in -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/05--Big Numbers Remainder/test_data/test7.out: -------------------------------------------------------------------------------- 1 | Input Error -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/Q6--Animal Kingdom .docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/Q6--Animal Kingdom .docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/answer/Animal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/answer/Animal.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/answer/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/answer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/answer/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/Icon_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test1.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test1.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test1.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test2.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test2.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test2.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test3.out -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test3.rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10802物件導向程式設計期末考/06--Animal Kingdom_/test_data/test3.rp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q1/NumberGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q1/NumberGame.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q1/Number_Game.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q1/Number_Game.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q1/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q2/Shisensho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q2/Shisensho.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q2/Shisensho.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q2/Shisensho.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q3/ConnectFour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q3/ConnectFour.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q3/ConnectFour.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q3/ConnectFour.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q4/CountAreaSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q4/CountAreaSize.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q4/CountAreaSize.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q4/CountAreaSize.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q5/BigInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q5/BigInt.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q5/BigNumberDivision.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q5/BigNumberDivision.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q5/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/Buff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/Buff.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/Buff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/Buff.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/BuffSystem.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/BuffSystem.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/Character.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/Character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/Character.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q6/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q7/Ghost Leg.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q7/Ghost Leg.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q7/GhostLeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/期中期末/10902物件導向程式設計期中考/Q7/GhostLeg.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.1-Compute the square root/1.1-Compute the square root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.1-Compute the square root/1.1-Compute the square root.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.1-Compute the square root/1.1-Compute the square root.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.1-Compute the square root/1.1-Compute the square root.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.1-Compute the square root/1.1-ComputeSQRT.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.1-Compute the square root/1.1-ComputeSQRT.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.1-Compute the square root/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.1-Compute the square root/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/1.2-ComputeHMS.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/1.2-ComputeHMS.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/1.2-ComputeHMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/1.2-ComputeHMS.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/1.2-ComputeHMS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/1.2-ComputeHMS.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/1.2-ComputeHMS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/1.2-ComputeHMS.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/1.2-ComputeHMS/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/作業一解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/作業一解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴1/戴老師正課作業一.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴1/戴老師正課作業一.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.1-Combinations/10.1-Combinations.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.1-Combinations/10.1-Combinations.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.1-Combinations/10.1-Combinations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.1-Combinations/10.1-Combinations.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.1-Combinations/10.1-Combinations.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.1-Combinations/10.1-Combinations.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.1-Combinations/10.1-Combinations.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.1-Combinations/10.1-Combinations.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.1-Combinations/PrintCombination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.1-Combinations/PrintCombination.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.1-Combinations/PrintCombination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.1-Combinations/PrintCombination.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.1-Combinations/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.1-Combinations/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/10.2-Word_Game.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/10.2-Word_Game.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/10.2-Word_Game.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/10.2-Word_Game.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/10.2-Word_Game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/10.2-Word_Game.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/10.2-Word_Game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/10.2-Word_Game.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/10.2-Word_Game/words.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/O-戴-正課-作業十.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/O-戴-正課-作業十.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴10/作業十解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴10/作業十解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/11.1-Class_Inheritance.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/11.1-Class_Inheritance.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/11.1-Class_Inheritance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/11.1-Class_Inheritance.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/11.1-Class_Inheritance.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/11.1-Class_Inheritance.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/11.1-Class_Inheritance.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/11.1-Class_Inheritance.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/Document.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/Email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/Email.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/File.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.1-Class_Inheritance/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/Matrix.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/11.2-Matrix_Multiplication/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/O-戴-正課-作業十一.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/O-戴-正課-作業十一.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴11/作業十一解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴11/作業十一解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/12.1-Memory_Simulator.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/12.1-Memory_Simulator.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/12.1-Memory_Simulator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/12.1-Memory_Simulator.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/12.1-Memory_Simulator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/12.1-Memory_Simulator.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/12.1-Memory_Simulator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/12.1-Memory_Simulator.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴12/12.1-Memory_Simulator/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴12/O-戴-正課-作業十二.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴12/O-戴-正課-作業十二.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴12/作業十二解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴12/作業十二解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/13.1-Template_Binary_Search.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/13.1-Template_Binary_Search.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/13.1-Template_Binary_Search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/13.1-Template_Binary_Search.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/13.1-Template_Binary_Search.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/13.1-Template_Binary_Search.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/Template.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.1-Template_Binary_Search/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/13.2-AbsoluteValue.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/13.2-AbsoluteValue.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/13.2-AbsoluteValue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/13.2-AbsoluteValue.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/13.2-AbsoluteValue.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/13.2-AbsoluteValue.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/13.2-AbsoluteValue.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/13.2-AbsoluteValue.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/Template.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/13.2-AbsoluteValue/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/O-戴-正課-作業十三.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/O-戴-正課-作業十三.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴13/作業十三解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴13/作業十三解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/14.1-ATM/14.1-ATM.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/14.1-ATM/14.1-ATM.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/14.1-ATM/14.1-ATM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/14.1-ATM/14.1-ATM.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/14.1-ATM/14.1-ATM.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/14.1-ATM/14.1-ATM.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/14.1-ATM/14.1-ATM.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/14.1-ATM/14.1-ATM.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/14.1-ATM/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/14.1-ATM/Account.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/14.1-ATM/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/14.1-ATM/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/15.2--Library Database.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/15.2--Library Database.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/15.2-Library_Database.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/15.2-Library_Database.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/15.2-Library_Database.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/15.2-Library_Database.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/15.2-Library_Database.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/15.2-Library_Database.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/15.2-Library_Database/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/O-戴-正課-作業十四.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/O-戴-正課-作業十四.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴14/作業十四解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴14/作業十四解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/15.1-Set_Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/15.1-Set_Exercise.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/15.1-Set_Exercise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/15.1-Set_Exercise.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/15.1-Set_Exercise.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/15.1-Set_Exercise.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/15.1-Set_Exercise.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/15.1-Set_Exercise.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴15/15.1-Set_Exercise/name.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴15/O-戴-正課-作業十五.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴15/O-戴-正課-作業十五.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴15/作業十五解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴15/作業十五解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.1-Computes the average and standard deviation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.1-Computes the average and standard deviation/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/2.2-Leaderboard.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/2.2-Leaderboard.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/2.2-Leaderboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/2.2-Leaderboard.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/2.2-Leaderboard.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/2.2-Leaderboard.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/2.2-Leaderboard.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/2.2-Leaderboard.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.2-Leaderboard/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.3-Square Code/2.3-Square Code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.3-Square Code/2.3-Square Code.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.3-Square Code/2.3-Square Code.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.3-Square Code/2.3-Square Code.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.3-Square Code/2.3-Square Code.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.3-Square Code/2.3-Square Code.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.3-Square Code/2.3-Square_Code.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.3-Square Code/2.3-Square_Code.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/2.3-Square Code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/2.3-Square Code/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/作業二解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/作業二解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴2/戴老師正課作業二.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴2/戴老師正課作業二.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/3.1-Occurrenc Counting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/3.1-Occurrenc Counting.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/3.1-Occurrenc Counting.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/3.1-Occurrenc Counting.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/3.1-Occurrenc Counting.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/3.1-Occurrenc Counting.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/3.1-Occurrenc_Counting.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/3.1-Occurrenc_Counting.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/3.1-Occurrenc Counting/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/3.2-Text-based histogram/3.2-Text-based histogram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/3.2-Text-based histogram/3.2-Text-based histogram.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/3.2-Text-based histogram/3.2-Text-based histogram.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/3.2-Text-based histogram/3.2-Text-based histogram.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/3.2-Text-based histogram/3.2-TextBased_Histogram.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/3.2-Text-based histogram/3.2-TextBased_Histogram.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/3.2-Text-based histogram/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/3.2-Text-based histogram/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/作業三解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/作業三解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴3/戴老師正課作業三.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴3/戴老師正課作業三.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/4.1-Class Point in plane.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/4.1-Class Point in plane.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/4.1-Class Point in plane.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/4.1-Class Point in plane.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/4.1-Class_Point_In_Plane.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/4.1-Class_Point_In_Plane.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/Point.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/Point.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.1-Class Point in plane/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.2-Fraction/4.2-Fraction.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.2-Fraction/4.2-Fraction.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.2-Fraction/4.2-Fraction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.2-Fraction/4.2-Fraction.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.2-Fraction/4.2-Fraction.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.2-Fraction/4.2-Fraction.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.2-Fraction/4.2-Fraction.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.2-Fraction/4.2-Fraction.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.2-Fraction/Fraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.2-Fraction/Fraction.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.2-Fraction/Fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.2-Fraction/Fraction.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/4.2-Fraction/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/4.2-Fraction/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/O-戴-正課-作業四.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/O-戴-正課-作業四.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴4/作業四解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴4/作業四解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/HotDogStand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/HotDogStand.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/HotDogStand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/HotDogStand.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.1-Hot_Dog_Stand/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/5.2-Design_Month_Class.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/5.2-Design_Month_Class.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/5.2-Design_Month_Class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/5.2-Design_Month_Class.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/5.2-Design_Month_Class.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/5.2-Design_Month_Class.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/5.2-Design_Month_Class.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/5.2-Design_Month_Class.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/Month.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/Month.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/Month.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/Month.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/5.2-Design_Month_Class/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/O-戴-正課-作業五.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/O-戴-正課-作業五.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴5/作業五解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴5/作業五解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.1-Complex/6.1-Complex.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.1-Complex/6.1-Complex.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.1-Complex/6.1-Complex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.1-Complex/6.1-Complex.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.1-Complex/6.1-Complex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.1-Complex/6.1-Complex.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.1-Complex/6.1-Complex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.1-Complex/6.1-Complex.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.1-Complex/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.1-Complex/Complex.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.1-Complex/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.1-Complex/Complex.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.1-Complex/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.1-Complex/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/6.2-Prime_Number.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/6.2-Prime_Number.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/6.2-Prime_Number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/6.2-Prime_Number.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/6.2-Prime_Number.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/6.2-Prime_Number.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/6.2-Prime_Number.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/6.2-Prime_Number.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/PrimeNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/PrimeNumber.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/PrimeNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/PrimeNumber.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/6.2-Prime_Number/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/O-戴-正課-作業六.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/O-戴-正課-作業六.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴6/作業六解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴6/作業六解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/7.1-Form_Word.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/7.1-Form_Word.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/7.1-Form_Word.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/7.1-Form_Word.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/7.1-Form_Word.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/7.1-Form_Word.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/7.1-Form_Word.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/7.1-Form_Word.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/Form.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/Form.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.1-Form_Word/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/7.2-Array_To_Integer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/7.2-Array_To_Integer.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/7.2-Array_To_Integer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/7.2-Array_To_Integer.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/7.2-Array_To_Integer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/7.2-Array_To_Integer.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/7.2-Array_To_Integer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/7.2-Array_To_Integer.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/Atoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/Atoi.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/Atoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/Atoi.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/7.2-Array_To_Integer/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/O-戴-正課-作業七.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/O-戴-正課-作業七.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴7/作業七解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴7/作業七解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/8.1-Design_Polynomial_Class.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/8.1-Design_Polynomial_Class.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/8.1-Design_Polynomial_Class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/8.1-Design_Polynomial_Class.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/Polynomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/Polynomial.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/Polynomial.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴8/8.1-Design_Polynomial_Class/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴8/O-戴-正課-作業八.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴8/O-戴-正課-作業八.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴8/作業八解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴8/作業八解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.1-TheTranslationMachine/9.1-TheTranslationMachine.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.1-TheTranslationMachine/9.1-TheTranslationMachine.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.1-TheTranslationMachine/9.1-TheTranslationMachine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.1-TheTranslationMachine/9.1-TheTranslationMachine.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.1-TheTranslationMachine/9.1-TheTranslationMachine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.1-TheTranslationMachine/9.1-TheTranslationMachine.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.1-TheTranslationMachine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.1-TheTranslationMachine/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.2-Namespace/9.2-Namespace.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.2-Namespace/9.2-Namespace.docx -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.2-Namespace/9.2-Namespace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.2-Namespace/9.2-Namespace.txt -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.2-Namespace/9.2-Namespace.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.2-Namespace/9.2-Namespace.vcxproj -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.2-Namespace/9.2-Namespace.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.2-Namespace/9.2-Namespace.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.2-Namespace/Password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.2-Namespace/Password.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.2-Namespace/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.2-Namespace/User.h -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/9.2-Namespace/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/9.2-Namespace/main.cpp -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/O-戴-正課-作業九.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/O-戴-正課-作業九.sln -------------------------------------------------------------------------------- /台科物件導向/戴文凱/正課/戴9/作業九解答-20210423.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/戴文凱/正課/戴9/作業九解答-20210423.zip -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output-lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.1-Pattern_Output-lab/1.1-Pattern_Output.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.1-Pattern_Output-lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.1-Pattern_Output-lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/1.2-Input_Output-lab.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/1.2-Input_Output.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/1.2-Input_Output.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.2-Input_Output-lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/1.3-Compute_Sphere_Volume-lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/1.3-Compute_Sphere_Volume-lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習1/賴老師實習課作業一.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習1/賴老師實習課作業一.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習2/2.1-Print_Standard_Format - lab/2.3-Compute_The_Tax.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習2/2.1-Print_Standard_Format - lab/2.3-Compute_The_Tax.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習2/2.1-Print_Standard_Format - lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習2/2.1-Print_Standard_Format - lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習2/2.2-Adding_Large_Numbers - lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習2/2.2-Adding_Large_Numbers - lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax - lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax - lab.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax - lab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax - lab.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習2/2.3-Compute_The_Tax - lab/2.3-Compute_The_Tax.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習2/2.3-Compute_The_Tax - lab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習2/2.3-Compute_The_Tax - lab/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/實習/賴實習2/賴老師實習課作業二.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/實習/賴實習2/賴老師實習課作業二.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/11.1-Class_Inheritance.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/11.1-Class_Inheritance.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/11.1-Class_Inheritance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/11.1-Class_Inheritance.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/11.1-Class_Inheritance.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/11.1-Class_Inheritance.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/Document.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/Email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/Email.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/File.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.1-Class_Inheritance/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.2-Matrix_Multiplication/11.2-Matrix_Multiplication.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/11.2-Matrix_Multiplication/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/11.2-Matrix_Multiplication/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw10/E-賴-正課-作業十.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw10/E-賴-正課-作業十.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/12.1-Memory_Simulator.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/12.1-Memory_Simulator.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/12.1-Memory_Simulator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/12.1-Memory_Simulator.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/12.1-Memory_Simulator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/12.1-Memory_Simulator.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/12.1-Memory_Simulator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/12.1-Memory_Simulator.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw11/12.1-Memory_Simulator/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw11/E-賴-正課-作業十一.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw11/E-賴-正課-作業十一.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/13.1-Template_Binary_Search/13.1-Template_Binary_Search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/13.1-Template_Binary_Search/13.1-Template_Binary_Search.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/13.1-Template_Binary_Search/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/13.1-Template_Binary_Search/Template.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/13.1-Template_Binary_Search/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/13.1-Template_Binary_Search/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/13.2-AbsoluteValue.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/13.2-AbsoluteValue.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/13.2-AbsoluteValue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/13.2-AbsoluteValue.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/13.2-AbsoluteValue.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/13.2-AbsoluteValue.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/13.2-AbsoluteValue.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/13.2-AbsoluteValue.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/Template.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/13.2-AbsoluteValue/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw12/E-賴-正課-作業十二.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw12/E-賴-正課-作業十二.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/7.1-Form_Word.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/7.1-Form_Word.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/7.1-Form_Word.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/7.1-Form_Word.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/7.1-Form_Word.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/7.1-Form_Word.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/7.1-Form_Word.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/7.1-Form_Word.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/Form.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.1-Form_Word/words.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/7.2-Array_To_Integer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/7.2-Array_To_Integer.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/7.2-Array_To_Integer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/7.2-Array_To_Integer.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/7.2-Array_To_Integer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/7.2-Array_To_Integer.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/7.2-Array_To_Integer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/7.2-Array_To_Integer.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/Atoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/Atoi.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/Atoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/Atoi.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/7.2-Array_To_Integer/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw6/E-賴-正課-作業六.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw6/E-賴-正課-作業六.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/8.1-Design_Polynomial_Class.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/8.1-Design_Polynomial_Class.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/8.1-Design_Polynomial_Class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/8.1-Design_Polynomial_Class.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/Polynomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/Polynomial.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/Polynomial.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw7/8.1-Design_Polynomial_Class/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw7/E-賴-正課-作業七.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw7/E-賴-正課-作業七.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.1-TheTranslationMachine/9.1-TheTranslationMachine.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.1-TheTranslationMachine/9.1-TheTranslationMachine.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.1-TheTranslationMachine/9.1-TheTranslationMachine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.1-TheTranslationMachine/9.1-TheTranslationMachine.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.1-TheTranslationMachine/9.1-TheTranslationMachine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.1-TheTranslationMachine/9.1-TheTranslationMachine.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.1-TheTranslationMachine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.1-TheTranslationMachine/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/9.2-Namespace.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/9.2-Namespace.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/9.2-Namespace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/9.2-Namespace.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/9.2-Namespace.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/9.2-Namespace.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/9.2-Namespace.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/9.2-Namespace.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/Password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/Password.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/User.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/9.2-Namespace/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw8/E-賴-正課-作業八.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw8/E-賴-正課-作業八.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/10.1-Combinations.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/10.1-Combinations.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/10.1-Combinations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/10.1-Combinations.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/10.1-Combinations.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/10.1-Combinations.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/10.1-Combinations.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/10.1-Combinations.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/PrintCombination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/PrintCombination.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/PrintCombination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/PrintCombination.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.1-Combinations/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/10.2-Word_Game.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/10.2-Word_Game.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/10.2-Word_Game.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/10.2-Word_Game.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/10.2-Word_Game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/10.2-Word_Game.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/10.2-Word_Game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/10.2-Word_Game.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/10.2-Word_Game/words.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/hw9/E-賴-正課-作業九.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/hw9/E-賴-正課-作業九.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/1.1-Compute the square root/1.1-Compute the square root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/1.1-Compute the square root/1.1-Compute the square root.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/1.1-Compute the square root/1.1-ComputeSQRT.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/1.1-Compute the square root/1.1-ComputeSQRT.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/1.1-Compute the square root/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/1.1-Compute the square root/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/1.2-ComputeHMS.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/1.2-ComputeHMS.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/1.2-ComputeHMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/1.2-ComputeHMS.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/1.2-ComputeHMS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/1.2-ComputeHMS.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/1.2-ComputeHMS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/1.2-ComputeHMS.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/1.2-ComputeHMS/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.1-Computes the average and standard deviation/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.1-Computes the average and standard deviation/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/2.2-Leaderboard.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/2.2-Leaderboard.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/2.2-Leaderboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/2.2-Leaderboard.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/2.2-Leaderboard.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/2.2-Leaderboard.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/2.2-Leaderboard.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/2.2-Leaderboard.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.2-Leaderboard/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.3-Square Code/2.3-Square Code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.3-Square Code/2.3-Square Code.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.3-Square Code/2.3-Square Code.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.3-Square Code/2.3-Square Code.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.3-Square Code/2.3-Square Code.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.3-Square Code/2.3-Square Code.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/2.3-Square Code/2.3-Square_Code.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/2.3-Square Code/2.3-Square_Code.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴1/賴教授正課作業.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴1/賴教授正課作業.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/3.1-Occurrenc Counting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/3.1-Occurrenc Counting.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/3.1-Occurrenc Counting.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/3.1-Occurrenc Counting.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/3.1-Occurrenc Counting.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/3.1-Occurrenc Counting.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/3.1-Occurrenc_Counting.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/3.1-Occurrenc_Counting.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/3.1-Occurrenc Counting/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/3.2-Text-based histogram/3.2-Text-based histogram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/3.2-Text-based histogram/3.2-Text-based histogram.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/3.2-Text-based histogram/3.2-Text-based histogram.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/3.2-Text-based histogram/3.2-Text-based histogram.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/3.2-Text-based histogram/3.2-TextBased_Histogram.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/3.2-Text-based histogram/3.2-TextBased_Histogram.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/3.2-Text-based histogram/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/3.2-Text-based histogram/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴2/賴老師正課作業二.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴2/賴老師正課作業二.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/4.1-Class Point in plane.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/4.1-Class Point in plane.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/4.1-Class Point in plane.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/4.1-Class Point in plane.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/4.1-Class_Point_In_Plane.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/4.1-Class_Point_In_Plane.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/Point.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/Point.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/Source.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.1-Class Point in plane/sample.out: -------------------------------------------------------------------------------- 1 | 0 5 2 | 1 7 3 | 7 -1 4 | -1 -7 5 | -7 1 6 | 1 7 -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/4.2-Fraction.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/4.2-Fraction.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/4.2-Fraction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/4.2-Fraction.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/4.2-Fraction.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/4.2-Fraction.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/4.2-Fraction.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/4.2-Fraction.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/Fraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/Fraction.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/Fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/Fraction.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/sampleMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/sampleMain.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/sampleOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/4.2-Fraction/sampleOutput.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴3/賴老師正課作業三.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴3/賴老師正課作業三.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/5.1-Hot_Dog_Stand.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/HotDogStand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/HotDogStand.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/HotDogStand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/HotDogStand.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.1-Hot_Dog_Stand/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/5.2-Design_Month_Class.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/5.2-Design_Month_Class.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/5.2-Design_Month_Class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/5.2-Design_Month_Class.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/5.2-Design_Month_Class.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/5.2-Design_Month_Class.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/5.2-Design_Month_Class.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/5.2-Design_Month_Class.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/Month.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/Month.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/Month.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/Month.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/5.2-Design_Month_Class/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴4/E-賴-正課-作業四.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴4/E-賴-正課-作業四.sln -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.1-Complex/6.1-Complex.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.1-Complex/6.1-Complex.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.1-Complex/6.1-Complex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.1-Complex/6.1-Complex.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.1-Complex/6.1-Complex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.1-Complex/6.1-Complex.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.1-Complex/6.1-Complex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.1-Complex/6.1-Complex.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.1-Complex/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.1-Complex/Complex.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.1-Complex/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.1-Complex/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/6.2-Prime_Number.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/6.2-Prime_Number.docx -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/6.2-Prime_Number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/6.2-Prime_Number.txt -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/6.2-Prime_Number.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/6.2-Prime_Number.vcxproj -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/6.2-Prime_Number.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/6.2-Prime_Number.vcxproj.filters -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/PrimeNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/PrimeNumber.h -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/6.2-Prime_Number/main.cpp -------------------------------------------------------------------------------- /台科物件導向/賴祐吉/正課/賴5/E-賴-正課-作業五.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frakw/NTUST_OOP_1082/HEAD/台科物件導向/賴祐吉/正課/賴5/E-賴-正課-作業五.sln --------------------------------------------------------------------------------