Tag: 10cth1

  • Tuyến xe Bus từ trường mình đến chỗ học GDTC!

    Để đi từ Trường mình đến CLB bóng đá Khánh Hội mình phải đi 2 tuyến xe:1-Tuyến số 54: Bx Miền Đông=>Chợ Lớn2-Tuyến số 72: Bến Thành=> Hiệp Phước Tuyến 72 mình sẽ đi ngang đường Khánh Hội rùi xuống xe cuốc bộ típ! Vì lý do trời khuya mắt kém tay run nên lỡ…

  • 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…

  • Thời Khoá Biểu Học GDTC (Thể Dục )

    Địa chỉ học : CLB Bóng Đá Khánh Hội -Số 9 Đường 48 – p3 – Quận 4 – TP HCMThời gian :Thứ 3 bắt đầu từ tuần 09 đến tuần 20 từ 13h30 đến 17h15 ( 5 tiết)MSMH : 20112023Số Tín chỉ : 2áp dụng cho các bạn lớp cth01 và 02 , mong…

  • 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

  • KET BAN

    Hello! xin chao cac ban cua hai lop minh hoc cung nhau da lau roi ,cung khoang gan 1 thang roi nhung minh thay cac ban con e de trong giao tiep va ket ban.minh co y tuong nay: cac ban nen dang dia chi yahoo cua minh len trang web nay de moi nguoi…