<![CDATA[Messages posted by "RainbowMCVT2561"]]> /hvaonline/posts/listByUser/213659.html JForum - http://www.jforum.net website bi hack bỏi Ayyildiz Tim

vodanh120 wrote:
e đã được administrator nhưng không làm được gì cả. http://thienthan.edu.vn/administrator/index.php?option=com_admin&view=profile&layout=edit&id=106 bây giờ e phải làm sao...??? :-(  
Bạn đã "vô" được Adm rồi thì bạn post lên đây hỏng có ích gì? Cái link bạn gửi là cái link Login. Gửi lên đây có ngụ ý chi?]]>
/hvaonline/posts/preList/45515/280056.html#280056 /hvaonline/posts/preList/45515/280056.html#280056 GMT
Về việc truy cập HVA qua tapatalk

quanta wrote:

xnohat wrote:
Rất tiếc đến tên phần mềm nghe còn lạ lẫm. 
Nhà mình toàn dùng iPhone... 4 số 1280 thôi, nhưng có hôm mượn được em Kindle thấy dùng app này đúng là tiện thật. 
Mình nghĩ có thể mở thêm chức năng RSS chẳng? ( Suy nghĩ riêng)]]>
/hvaonline/posts/preList/45345/279332.html#279332 /hvaonline/posts/preList/45345/279332.html#279332 GMT
Cần giúp về lập trình C Code:
#include <stdio.h>
#include <conio.h>
#include <string.h>
typedef  char   infor1[20];
typedef  float  infor2;
typedef  int    infor3;
struct   element
{ infor1   ht;
  infor2   cc;
  infor3   cntc;
  element  *next;
};
typedef  element  *List;
List  F, L, p, t;
infor1  x;
infor2  y;
infor3  z;
int     cv;

void  Display(List  F)
{ List p;
  p=F;
  while  (p != NULL)
  { printf("\n %20s  %7.2f  %7d", (*p).ht , (*p).cc , (*p).cntc);
    p=(*p).next;
  }
}

List  Search(List  F, infor1  x)
{ List  p;
  p=F;
  while ( (p!=NULL) && strcmp((*p).ht,x) !=0 )
     p= (*p).next;
  return  p;
}

void  InsertFirst(List  &F, infor1  x, infor2  y, infor3  z)
{ List  p;
  p=new  element;
  strcpy((*p).ht,x); (*p).cc=y; (*p).cntc=z;
  (*p).next=F;
  F=p;
}

void  InsertLast(List  &F, List  &L, infor1  x, infor2  y, infor3  z)
{ List  p;
  p=new  element;
  strcpy((*p).ht,x); (*p).cc=y; (*p).cntc=z;
  (*p).next=NULL;
  if  (F==NULL)  F=p;
  else  (*L).next=p;
  L=p;
}

void  InsertSort(List  &F, infor1  x, infor2  y, infor3  z)
{ List  p, before, after;
  p=new  element;
  strcpy((*p).ht,x); (*p).cc=y; (*p).cntc=z;
  after=F;
  while ( (after!=NULL) && ( strcmp((*after).ht,x)<0 ) )
  { before=after;
    after=(*after).next;
  };
  (*p).next=after;
  if (F==after)  F=p;
  else  (*before).next=p;
}

void  Create1(List  &F)
{  printf("\n Chuong trinh nhap moi danh sach theo thu tu nguoc");
   F=NULL;
   do
   {  printf("\n nhap ho ten:"); fflush(stdin); gets(x);
      if  ( strlen(x)>0 )
      { printf("\n Nhap chieu cao:");
        scanf("%f", &y);
        z = (int)y*100-105;
        InsertFirst(F,x,y,z);
      }
   } while ( strlen(x)>0 );
}

void Create2(List  &F, List  &L)
{  printf("\n Chuong trinh nhap moi danh sach theo thu tu thuan");
   F=NULL; L=NULL;
   do
   {  printf("\n nhap ho ten:"); fflush(stdin); gets(x);
      if  ( strlen(x)>0 )
      { printf("\n Nhap chieu cao:");
        scanf("%f", &y);
        z = (int)(y*100-105);
        InsertLast(F, L, x, y, z);
      }
   } while ( strlen(x)>0) ;
}

void  Create3(List  &F)
{  printf("\n Chuong trinh nhap moi danh sach theo thu tu ten");
   F=NULL;
   do
   {  printf("\n nhap ho ten:"); fflush(stdin); gets(x);
      if  ( strlen(x)>0 )
      { printf("\n Nhap chieu cao:");
        scanf("%f", &y);
        z = (int)(y*100-105);
        InsertSort(F,x,y,z);
      }
   } while ( strlen(x)>0 );
}

void  DeleteFirst(List  &F)
{ List  p;
  if (F!=NULL)
     { p=F;
       F=(*p).next;
       delete  p;
     }
}

void  DeleteElement(List  &F, List  t)
{ List before, after;
  after=F;
  while  ( ( after!=NULL) && (after!=t) )
  { before = after;
    after=(*after).next;
  }
  if (after!=NULL)
     { if (F==t)   F=(*t).next;
       else  (*before).next=(*t).next;
       delete  t;
     }
}

main()
{ F=NULL; L=NULL;
  do
  {  printf("\n  1. Nhap moi danh sach sinh vien theo thu tu nguoc");
     printf("\n  2. Liet ke danh sach");
     printf("\n  3. Them 1 nguoi ten Le Them, cao 1.55 vao dau danh sach");
     printf("\n  4. Them 1 nguoi vao dau danh sach");
     printf("\n  5. Tim nguoi ten Le Tim");
     printf("\n  6. Tim theo ten");
     printf("\n  7. Xoa nguoi dau tien");
     printf("\n  8. Xoa theo ho ten");
     printf("\n  0. Ket thuc");
     printf("\n  An STT cong viec can thuc hien:");
     scanf("%d", &cv);
     switch  (cv)
     {  case  1: Create1(F);
                 break;
        case  2: Display(F);
                 break;
        case  3: z=1.55*100-105;
                 InsertFirst(F,"Le Them",1.55,z);
                 break;
        case  4: printf("\n Nhap ho ten can them:");
                 fflush(stdin); gets(x);
                 printf("\n Nhap chieu cao:"); scanf("%f", &y);
                 z=y*100-105;
                 InsertFirst(F,x,y,z);
                 break;
        case  5: t=Search(F,"Le Tim");
              if  (t!=NULL)
                 printf("\n %20s  %7.2f  %7d", (*t).ht , (*t).cc , (*t).cntc);
              else  printf("\n Tim khong co");
              break;
        case  6: printf("\n Nhap ho ten can tim:");
                 fflush(stdin); gets(x);
                 t=Search(F,x);
              if (t!=NULL)
                 printf("\n %20s  %7.2f  %7d", (*t).ht , (*t).cc , (*t).cntc);
              else  printf("\n Tim khong co");
              break;
        case  7: DeleteFirst(F);
                 break;
        case  8: printf("\n Nhap ho ten can xoa:");
                 fflush(stdin); gets(x);
                 t=Search(F,x);
                 if  (t!=NULL)
                    DeleteElement(F,t);
                 else  printf("\n Tim khong co");
                 break;
     };
  } while ( (cv>=1) && (cv<=8) );
]]>
/hvaonline/posts/preList/45221/278831.html#278831 /hvaonline/posts/preList/45221/278831.html#278831 GMT
Mong giúp phân tích file nghi ngờ /hvaonline/posts/preList/41376/256219.html#256219 /hvaonline/posts/preList/41376/256219.html#256219 GMT Mong giúp phân tích file nghi ngờ /hvaonline/posts/preList/41376/256117.html#256117 /hvaonline/posts/preList/41376/256117.html#256117 GMT RCE và vô hiệu hoá VB.NET virus (của STL à ?) /hvaonline/posts/preList/39504/243747.html#243747 /hvaonline/posts/preList/39504/243747.html#243747 GMT Bị thay đổi file forum.php trong vbb /hvaonline/posts/preList/38664/236981.html#236981 /hvaonline/posts/preList/38664/236981.html#236981 GMT Giúp đệ với. Có phải virus mới trên Yahoo? /hvaonline/posts/preList/38622/236803.html#236803 /hvaonline/posts/preList/38622/236803.html#236803 GMT Màn hình bị biến dạng chữ từ khi khởi động,bị treo sau khi chạy vạch /hvaonline/posts/preList/34291/210606.html#210606 /hvaonline/posts/preList/34291/210606.html#210606 GMT Tổng hợp giáo trình Lab Nhatnghe /hvaonline/posts/preList/34227/210604.html#210604 /hvaonline/posts/preList/34227/210604.html#210604 GMT tài liệu về redhat 9 /hvaonline/posts/preList/34294/210601.html#210601 /hvaonline/posts/preList/34294/210601.html#210601 GMT xin phần mềm đọc file .exe /hvaonline/posts/preList/34292/210593.html#210593 /hvaonline/posts/preList/34292/210593.html#210593 GMT Về việc nhận dạng ổ cưng' +usb /hvaonline/posts/preList/34217/210284.html#210284 /hvaonline/posts/preList/34217/210284.html#210284 GMT Về việc nhận dạng ổ cưng' +usb /hvaonline/posts/preList/34217/210226.html#210226 /hvaonline/posts/preList/34217/210226.html#210226 GMT Nguyên nhân không cài win 7 được? /hvaonline/posts/preList/34215/210224.html#210224 /hvaonline/posts/preList/34215/210224.html#210224 GMT cpu bị chiếm qua cao trong thời gian dài /hvaonline/posts/preList/34161/209933.html#209933 /hvaonline/posts/preList/34161/209933.html#209933 GMT Một quyết định không chắc chắn /hvaonline/posts/preList/33974/208901.html#208901 /hvaonline/posts/preList/33974/208901.html#208901 GMT Cài windows XP /hvaonline/posts/preList/32520/208900.html#208900 /hvaonline/posts/preList/32520/208900.html#208900 GMT Mất quyền admin, hỏng CD ROM /hvaonline/posts/preList/33986/208899.html#208899 /hvaonline/posts/preList/33986/208899.html#208899 GMT Virus Thâp nhập và theo dõi toàn bộ PC /hvaonline/posts/preList/33429/205522.html#205522 /hvaonline/posts/preList/33429/205522.html#205522 GMT dính con virut conime.exe hay updateTH.trojan !! Cứu!! /hvaonline/posts/preList/33406/205514.html#205514 /hvaonline/posts/preList/33406/205514.html#205514 GMT Học thêm văn bằng /hvaonline/posts/preList/33029/203671.html#203671 /hvaonline/posts/preList/33029/203671.html#203671 GMT