Bài Tập 1

Unknown

20:38  /  0 Comments

Bài Tập 1

Bài Tập  xác định các lớp  trong quản lý xuất nhập hàng sau :  quản lý hàng hóa  phiếu nhập gồm : mã phiếu ngày lập  thông tin nhà cung cấp gồm : nhà cung cấp gồm mã ncc, tên ncc, địa chỉ thông tin hàng gồm : mã mặt hàng, đơn giá, số lượng Bài Làm Lớp Hàng...

Các thuật toán tìm kiếm

Unknown

22:07  /  0 Comments

Các thuật toán tìm kiếm

#include<conio.h> #include<iostream> #include<math.h> #include<iomanip> #define Max 10 using namespace std; struct Node{ int key; Node *left,*right; } *T; void insert(int x,Node *&T) { if(T==NULL){ T=new Node; T->left=NULL; T->right=NULL; T->key=x; } else if(T->key<x) insert(x,T->right); else insert(x,T->left); } void nhapcay(Node *&T,int a[],int n) { for(int i=0;i<n;i++) { insert(a[i],T); } } void hienpre(Node *T) { if(T!=NULL){ cout<<T->key<<setw(5); hienpre(T->left); hienpre(T->right); } } void...

CODE vẽ đồ thị sin chuyển đổi quan sát

Unknown

00:14  /  1 Comments

CODE vẽ đồ thị sin chuyển đổi quan sát

#include <iostream> #include <stdio.h> #include <conio.h> #include <graphics.h> #include <dos.h> #include <math.h> using namespace std; int  xv1,yv1,xv2,yv2; float xw1,xw2,yw1,yw2; // cac toa cua cua cua so va khung nhin float tlx,tly; // ty le void cuaso(float x1,float y1,float x2,float y2) { xw1=x1; xw2=x2; yw1=y1;yw2=y2;  // khoi tao cua so } void khungnhin(float x1,float y1,float x2,float y2) {   xv1=x1;yv1=y1;...

CODE tô màu hình thang

Unknown

21:54  /  0 Comments

CODE tô màu hình thang

#include<conio.h> #include<math.h> #include<graphics.h> #include<iostream> using namespace std; struct diem{ int x,y; }; diem A,B,C,D; void tomauhinhthang(diem A,diem B,diem C,diem D,int mt) { setcolor(mt); setlinestyle(0,0,0); float m1=(float) (D.x-A.x)/(D.y-A.y); float m2=(float) (C.x-B.x)/(C.y-B.y); int y=A.y+1,x1,x2; while(y<D.y){ x1=(int) (m1*(y-A.y)+A.x); x2=(int) (m2*(y-B.y)+B.x); delay(10); line(x1+1,y,x2,y); //cout<<x1<<"\t"<<y<<"\t"<<x2<<"\t"<<y<<"\n"; //for(int x=x1+1;x<x2;x++) //putpixel(x,y,mt); y++; } } void hinhthang(diem A,diem B, diem C,diem D) { setcolor(3); setlinestyle(1,0,0); line(A.x,A.y,D.x,D.y); line(D.x,D.y,C.x,C.y);...

Mẹo Facebook: Tự thêm tính năng Reply vào phần bình luận

Unknown

21:40  /  0 Comments

Mẹo Facebook: Tự thêm tính năng Reply vào phần bình luận

Tính năng Reply một cấp cho phép trả lời lại phần bình luận trên Facebook, thường thấy ở các fanpage. Hiện tính năng này dường như cũng đang được thử nghiệm rộng rãi hơn cho người dùng Facebook ở New Zealand. Do đó, để tích hợp thêm nút Reply vào các bài đăng của mình trên Facebook, bạn có...

Code Danh sách móc nối đơn

Unknown

22:21  /  0 Comments

Code Danh sách móc nối đơn

/*DANH SACH MOC NOI DON QUAN LY SINH VIEN*/ #include<conio.h> #include<stdio.h> #include<iostream> #include<iomanip> #include<stdlib.h> #include<string.h> using namespace std; struct SINHVIEN{ char masv[10]; char hoten[20]; float dtb; }; struct Node{ SINHVIEN infor; Node *next; } *L; void nhap(Node *&L) { Node *q; char s[10]; L=new Node; q=L; cout<<"Nhap vao ma sinh vien : "; fflush(stdin); gets(L->infor.masv); cout<<"Nhap ho ten...

code đồ họa vẽ đường tròn

Unknown

17:54  /  1 Comments

code đồ họa vẽ đường tròn

vẽ đường tròn bằng các thuật toán làm tròn số,bresenham ,midpoint : #include<conio.h> #include<iostream> #include<math.h> #include<stdio.h> #include<graphics.h> using namespace std; void ktdh() {     int gd=0,gm;     initgraph(&gd,&gm,""); } void nhap(int &x,int &y,int &R) {     cout<<"Nhap vao toa do tam O\n";     cout<<"nhap x = ";     cin>>x;     cout<<"Nhap y =...