Author: Nam Le

  • Thông báo học Tiếng Anh 1

    Tuần này (tuần 11) nghỉ lễ 20/11 ngay ngày thứ 7. Cô hiện chưa sắp lịch học bù được nên ngày thứ năm (18/11) lớp cth01 và 10cth02 không có học bù. Lịch học sẽ được cập nhật tại bài viết này sau, các bạn chú ý đón xem các tập típ theo [emot]grin[/emot]

  • Bài tập 53 b-c-d-e trang 46 – Toán rời rạc

    Bài tham khảo của ng ta (hình như là trongdat_400), các bạn xem rồi đóng góp ý kiến,… ../document/bai53_b_c_d_e_trang46_ToanRoiRac.jpg

  • Batch DOS – Công cụ hỗ trợ chạy các ứng dụng 16bit

    Batch DOS là một Wrapper của DOSBox – một chương trình giả lập mã nguồn mở và miễn phí của máy tính cá nhân Intel x86 được thiết kế cho mục đích chạy phần mềm được tạo cho hệ điều hành đĩa trên máy tính tương thích IBM PC, chủ yếu là trò chơi điện…

  • Microsoft Visual Studio 2008 Express/2010 Ultimate/ 2012 Ultimate

    Microsoft Visual Studio 2008 Express Thông tin: Hệ điều hành: Windows XP/Server 2003/Vista/7 Dung lượng:      894 MB   Phát hành:      Microsoft Download: http://www.download.com.vn/developer+tools+ide/6841_visual-studio-2008-express-edition.aspx?op=download(Nên xem: Link) Microsoft Visual Studio 2010 Ultimate Thông tin: Hệ điều hành: Windows XP/Server 2003/Vista/7 Dung lượng:      2.4Gb   Phát hành:      Microsoft Serial: YCFHQ-9DWCY-DKV88-T2TMH-G7BHP Download: http://download.microsoft.com/download/2/4/7/24733615-AA11-42E9-8883-E28CDCA88ED5/X16-42552VS2010UltimTrial1.iso(Nên xem: Link) Microsoft Visual Studio 2012 Ultimate Thông tin: Hệ điều hành:…

  • Cách Disable/Enable AutoRun trên Windows Vista/7 Home Premium

    Thủ thuật sau được dùng cho Windows Vista Home Premium và Windows 7 Home Premium. Bài viết sau được đăng trên Blog cũ của mình: Các bạn chắc đã biết cách Enable/Disable AutoRun đối với các thiết bị trên eChip số 358 (30 – 10 – 2007) của bạn Cao Minh Quốc Huy nhưng cách…

  • RTfW v4.0 – Công cụ hiệu chỉnh Windows hữu ích

    Restore tools for Windows (update v4.0.0.0) Giới thiệu: Chức năng chung của nó là sửa lỗi hệ thống như tắt/mở các công cụ tùy chỉnh như Registry, Task manager, Command Promt, Run, Control panel,… và tùy chỉnh windows như Active Desktop, Start menu,… Danh sách chức năng chính: Tắt/bật Registry Tắt/bật Task manager Tắt/bật Run…

  • Đếm tần suất 1 kí tự trong 1 file

    # include <stdio.h> # include <string.h> main() { FILE *fp; char in[100]; long int freq[257]; int i; printf("\nFile frequency table generator\n\n"); printf("\nInput file:"); scanf("%s",in); fp=fopen(in,"rb"); if(fp==NULL) { printf("\nCould not open input file.Aborting\n"); return 1; } for(i=0;i<257;i++) freq[i]=0; while(i=fgetc(fp),i!=EOF) { freq[i]++; } fcloseall(); fp=fopen("count.txt","w"); fprintf(fp,"\nCharacter frequency table of %s\n",in); fprintf(fp,"\nCharacter ASCII frequency\n\n"); for(i=0; i<256; i++) {…

  • QUẢN LÝ SINH VIÊN

    [codes=c]#include #include #include #include #define MAX 100#define TOAN 0#define LY   1#define HOA  2 struct sinhvien {  char mslop[5];  char hoten[35];  float diem[3];} danhsach[MAX];int n = 0; void nhapmoi(){  char mslop[5], tmp[3];  int i;  float diem[3];  do {    printf("\nCho biet ma so lop : ");    gets(mslop);    if (strlen(mslop))    {      strcpy(danhsach[n].mslop, mslop);      printf("\nCho biet ho ten : ");      gets(danhsach[n].hoten);      printf("\nCho biet diem so : ");      for (i=0; i<3; i++)      {        scanf("%f", &diem[i]);        danhsach[n].diem[i] = diem[i];      }      gets(tmp);      n++;    }  } while (strlen(mslop));}…

  • DÃY TĂNG DẦN

    #include <stdio.h> void main() { int a[10], i, maxstart, maxend, maxlen, tmpstart, tmpend, tmplen; printf("\nNhap vao 10 phan tu nguyen cua day :"); for (i = 0; i < 10; i++) scanf("%d", & a[i]); printf("Day da cho :\n"); for (i = 0; i < 10; i++) printf("%6d", a[i]); maxstart = maxend = tmpstart = tmpend…

  • CẤU TRÚC VÀ CÁC HÀM THAO TÁC TRÊN SỐ PHỨC

    #include <stdio.h> #include <math.h> void main() { double a, xn, ketqua; printf("\nNhap vao so muon tinh can bac hai : "); scanf("%lf", &a); xn = (a+1)/2; do { ketqua = xn; xn = 0.5 * (xn + a/xn); } while (fabs(xn-ketqua) > 0.0001); printf("\nKet qua = %lf", xn); getch(); }

  • TÍNH CĂN BẬC HAI THEO PHƯƠNG PHÁP LẶP NEWTON [C]

    #include <stdio.h> #include <math.h> void main() { double a, xn, ketqua; printf("\nNhap vao so muon tinh can bac hai : "); scanf("%lf", &a); xn = (a+1)/2; do { ketqua = xn; xn = 0.5 * (xn + a/xn); } while (fabs(xn-ketqua) > 0.0001); printf("\nKet qua = %lf", xn); getch(); }

  • Lý thuyết đồ thị

    Download tại đây:http://www.box.net/public/8ountu3avq