-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.xml
200 lines (161 loc) · 11.1 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>FITHOU-UnderWorld</title>
<link>https://FITHOU-UnderWorld.github.io/</link>
<description>Recent content on FITHOU-UnderWorld</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sat, 11 Dec 2021 00:00:00 +0000</lastBuildDate>
<atom:link href="https://FITHOU-UnderWorld.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Bài Tập Lớn Queue</title>
<link>https://FITHOU-UnderWorld.github.io/post/ctdl_btl_queue/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/ctdl_btl_queue/</guid>
<description>wait update&hellip;..</description>
</item>
<item>
<title>Danh Sách Liên Kết Đôi </title>
<link>https://FITHOU-UnderWorld.github.io/post/ctdl_btl_lk2/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/ctdl_btl_lk2/</guid>
<description>#include &lt;bits/stdc++.h&gt; using namespace std; struct NODE{ int data; NODE *next; }; int main(){ NODE *head = new NODE(); head-&gt;data = 1; head-&gt;next = NULL; NODE *second = new NODE(); second-&gt;data = 2; head-&gt;next = NULL; NODE *third = new NODE(); third-&gt;data = 3; head-&gt;next = NULL; //liên kết các node lại với nhau head-&gt;next = second; second-&gt;next = third; //truy cập phần tử int data = head-&gt;data; cout&lt;&lt;data&lt;&lt;endl; //truy cập đến tất cả các phần tử trong NODE NODE *p = head; while(p!</description>
</item>
<item>
<title>Danh Sách Liên Kết Đơn </title>
<link>https://FITHOU-UnderWorld.github.io/post/ctdl_btl_lk1/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/ctdl_btl_lk1/</guid>
<description>#include &lt;bits/stdc++.h&gt; using namespace std; typedef struct DeTai { int soLuong; char tenDeTai[50], SinhVien[30], maDeTai[30]; } detai; typedef struct node { DeTai data; struct node *next; } qldt; // chuong trinh quan ly dt void initDeTai(qldt *&amp;head, qldt *&amp;tail) { head = NULL; tail = NULL; }; node *createNode() { qldt *new_node = (qldt *) malloc(sizeof(qldt)); cout&lt;&lt;&quot;\nNhap ten De Tai: &quot;; fflush(stdin); gets(*&amp;new_node-&gt;data.tenDeTai); cout&lt;&lt;&quot;Nhap ma De Tai: &quot;; fflush(stdin); cin&gt;&gt;*&amp;new_node-&gt;data.maDeTai; cout&lt;&lt;&quot;Nhap ten SV lam De Tai: &quot;; fflush(stdin); gets(*&amp;new_node-&gt;data.</description>
</item>
<item>
<title>Quản lý kinh doanh quần áo</title>
<link>https://FITHOU-UnderWorld.github.io/post/csdl_quan_li_kinh_doanh_quan_ao/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/csdl_quan_li_kinh_doanh_quan_ao/</guid>
<description>mọi người xem phần trình bày ở đây nhé Quản Lý Bán Quần Áo</description>
</item>
<item>
<title>Quản Lý Sinh Viên</title>
<link>https://FITHOU-UnderWorld.github.io/post/ctdl_btl_quan_ly_sinh_vien/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/ctdl_btl_quan_ly_sinh_vien/</guid>
<description>#include&lt;iostream&gt; using namespace std; #include&lt;string&gt; #include&lt;fstream&gt; // khai báo cấu trúc ngày tháng năm sinh struct date { int ngay; int thang; int nam; }; typedef struct date DATE; // hàm đọc dữ liệu ngày tháng năm từ file void Doc_Ngay_Thang_Nam(ifstream &amp;filein, DATE &amp;date) { filein &gt;&gt; date.ngay; filein.seekg(1, 1); // dịch sang phải 1 byte để bỏ qua kí tự '/' filein &gt;&gt; date.thang; filein.seekg(1, 1); // dịch sang phải 1 byte để bỏ qua kí tự '/' filein &gt;&gt; date.</description>
</item>
<item>
<title>Thực Hành C++</title>
<link>https://FITHOU-UnderWorld.github.io/post/de_thuc_hanh_cslt/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/de_thuc_hanh_cslt/</guid>
<description>bài tập thực hành môn lập trình cơ sở mọi người xem rồi code lại cho nhớ nhé.
BUOI 1 Bai 1
#include &quot;bits/stdc++.h&quot; using namespace std; int main() { float s, v; int t; cout&lt;&lt;&quot;Nhap vao Quang duong: &quot;; cin&gt;&gt;s; cout&lt;&lt;&quot;Nhap vao Thoi gian: &quot;; cin&gt;&gt;t; v = s/t; cout&lt;&lt;&quot;Van toc la: &quot;&lt;&lt;setprecision(2)&lt;&lt;fixed&lt;&lt;v; return 0; } Bai 2
#include &quot;bits/stdc++.h&quot; using namespace std; int main() { string MaHS; string HoTen; string NgaySinh; string Lop; int SoBuoiAnBanTru; int SoTienAnBanTru; cout&lt;&lt;&quot;Nhap Ma Hoc Sinh: &quot;; fflush(stdin); getline(std::cin,MaHS); cout&lt;&lt;&quot;Nhap Ho Ten Hoc Sinh: &quot;; fflush(stdin); getline(std::cin,HoTen); cout&lt;&lt;&quot;Nhap Ngay Sinh: &quot;; fflush(stdin); getline(std::cin,NgaySinh); cout&lt;&lt;&quot;Nhap Lop: &quot;; fflush(stdin); getline(std::cin,Lop); cout&lt;&lt;&quot;Nhap So Buoi An Ban Tru: &quot;; fflush(stdin); cin&gt;&gt;SoBuoiAnBanTru; // tinnh toan so tien an theo buoi SoTienAnBanTru = SoBuoiAnBanTru * 25000; cout&lt;&lt;&quot;=============================&quot;&lt;&lt;endl; cout&lt;&lt;&quot;Ma Hoc Sinh: &quot;&lt;&lt;MaHS&lt;&lt;endl; cout&lt;&lt;&quot;Ho Ten Hoc Sinh: &quot;&lt;&lt;HoTen&lt;&lt;endl; cout&lt;&lt;&quot;Ngay Sinh Hoc Sinh: &quot;&lt;&lt;NgaySinh&lt;&lt;endl; cout&lt;&lt;&quot;Lop: &quot;&lt;&lt;Lop&lt;&lt;endl; cout&lt;&lt;&quot;So Buoi An Ban Tru: &quot;&lt;&lt;SoBuoiAnBanTru&lt;&lt;endl; cout&lt;&lt;&quot;So Tien An Ban Tru: &quot;&lt;&lt;SoTienAnBanTru&lt;&lt;endl; } bai 3</description>
</item>
<item>
<title>Tổng Hợp BTL Toán Rời Rạc</title>
<link>https://FITHOU-UnderWorld.github.io/post/trr_btl/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/trr_btl/</guid>
<description>btl1
de131
btl2
btl3
btl4
btl5
btl6
btl7
btl8
btl9
btl10
btl11
btl12
btl13
btl14
btl15
btl16
btl17
btl18
btl19\</description>
</item>
<item>
<title>Đề Bài Tập Lớn CSLT</title>
<link>https://FITHOU-UnderWorld.github.io/post/de_btl_cslt/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/de_btl_cslt/</guid>
<description>Tổng Hợp Đề CSLT mọi người làm xong đề tài của mình thì có thể tham khảo thêm đề khác để luyện tập nhé.
nhiều đề quá mình lười cop mọi người xem ở đây nhé ĐỀ BTL CƠ SỞ DỮ LIỆU</description>
</item>
<item>
<title>Đề Cơ Sở Dữ Liệu</title>
<link>https://FITHOU-UnderWorld.github.io/post/csdl_dethi/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/csdl_dethi/</guid>
<description> </description>
</item>
<item>
<title>Đề Cương Mạng Và Truyền Thông</title>
<link>https://FITHOU-UnderWorld.github.io/post/mang_de_cuong/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/mang_de_cuong/</guid>
<description>mọi người xem ở đây nhé Đề Cương Mạng Và Truyền Thông</description>
</item>
<item>
<title>Đề Thi Lập Trình Di Động </title>
<link>https://FITHOU-UnderWorld.github.io/post/ltdd_de_thi/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/ltdd_de_thi/</guid>
<description>wait update &hellip;&hellip;&hellip;..</description>
</item>
<item>
<title>Đề Thi Lập Trình Hướng Đối Tượng </title>
<link>https://FITHOU-UnderWorld.github.io/post/lhdt_de_thi/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/lhdt_de_thi/</guid>
<description>wait update &hellip;&hellip;&hellip;..</description>
</item>
<item>
<title>Đề Thi Lập Trình Web </title>
<link>https://FITHOU-UnderWorld.github.io/post/ltweb_de_thi/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/ltweb_de_thi/</guid>
<description>wait update &hellip;&hellip;&hellip;..</description>
</item>
<item>
<title>Đề Thi Toán Rời Rạc</title>
<link>https://FITHOU-UnderWorld.github.io/post/trr_de_thi/</link>
<pubDate>Sat, 11 Dec 2021 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/trr_de_thi/</guid>
<description>Đề 11 </description>
</item>
<item>
<title>An Example Post</title>
<link>https://FITHOU-UnderWorld.github.io/post/test/</link>
<pubDate>Mon, 04 Jun 2018 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/post/test/</guid>
<description></description>
</item>
<item>
<title></title>
<link>https://FITHOU-UnderWorld.github.io/search/placeholder/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/search/placeholder/</guid>
<description></description>
</item>
<item>
<title></title>
<link>https://FITHOU-UnderWorld.github.io/top/about/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/top/about/</guid>
<description>hê lô các bạn, trang web này nhằm mục đích giúp các bạn có nguồn bài tập lớn, đề thi, tài liệu để học tham khảo và thi tốt hơn. các bạn sau kì muốn đóng góp btl lên web có thể gửi về page MHN-BT or mail [email protected]. tks các bạn.</description>
</item>
<item>
<title></title>
<link>https://FITHOU-UnderWorld.github.io/top/books/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://FITHOU-UnderWorld.github.io/top/books/</guid>
<description></description>
</item>
</channel>
</rss>