- 1 Cài đặt phần mềm cần thiết cho học lập trình web
- 2 Tự Học HTML Cơ Bản Online Miễn Phí Từ A đến Z
- 3 Seo website dành cho dân IT
- 4 REACT NATIVE
- 5 sdfdsf
- 6 Lập trình di động với React Native
- 7 Vue.js
- 8 Kiếm thức cơ bản HTML CSS
- 9 So sánh count() và sizeof() 2 phần tử đếm mảng
- 10 Toán tử và biểu thức của php
Sử dụng jquery cho bai tap
<html> <body> <div class='container'> <ul class="todo" id='todo'> </ul> <ul id='completed' class='todo'> </ul> </div> <body> </html> function addTodoItem(text){ var ...
Liên kết danh sách đơn
/* C++ Programming, Example answer, Exercise 2a, Sheet 8 */ /* Author: Rob Miller and William Knottenbelt Program last changed: 30th September 2001 */ /* This program creates a linked list of strings, and prints it out both forwards and backwards. */ #include <iostream> #include ...
Lỗi khi tìm kiếm phẩn tử trong circularly linked list
//Searching for an item in the circularly linked list ListElem *find(ListElem *L,int val){ ListElem *tr; int f=0; if(L!=NULL){ if(L->data==val) return L;//The target item is the first item else{ //search the next item tr=L->next; while(tr!=L){ ...
Error LNK1168: cannot open
C/C++ : Error LNK1168: cannot open C:UsersAdministratorDocumentsVisual Studio Hôm nay mình code thì bị lỗi này, cụ thể lỗi như sau: Lần đầu tiên debug chạy thì ok. ex 1.png Sau đó mình thêm 1 câu lệnh hay sửa 1 cái gì đó (hoàn toàn đúng cú pháp nha) và debug lại thì báo lỗi. EX 2.png Ex ...
Không hiểu lỗi tại sao mất 2 ngày mà k biết lỗi gì
loi1.png 1366x736 48.1 KB loi2.png 1366x736 37.3 KB loi3.png 1366x736 33.5 KB
Lối hàm istream trong visual studio 2013
cpp2.png 1366x736 45.3 KB
Hướng Dẫn Làm Bài OOP
ĐỀ SỐ 15: QUẢN LÝ DANH SÁCH SỔ TIẾT KIỆM Khai báo lớp Người (Họ tên, Địa chỉ, Số ĐT) Khai báo lớp Khách hàng kế thừa từ lớp Người và bổ sung các thuộc tính (mã KH, Loại KH) - với loại khách hàng có thể là: cá nhân, tập thể, doanh nghiệp, mã KH là một số nguyên có 5 chữ số, tự động tăng. ...
Lỗi hàm xoá Cuối trong danh sach liên kết đơn
#include<iostream> #include<string> using namespace std; struct data { long ma; string ten; int thuTusv; }; struct SinhVien { struct data dulieu; struct SinhVien *pNExt = NULL; }; typedef SinhVien SVV; struct List { SVV *pHead = NULL; SVV *pTail = NULL; }; SVV *GetNode(data ...
Lỗi ngớ ngẫn mà không giải thích nổi
#include<iostream> using namespace std; int x[10]; bool check = false; int n; void reSult(int n){ for (int i = 1; i <= n; i++) { cout << x[i]; } cout << endl; } void next(int n){ int k = n; while (k>0 && x[k]==1) { k--; } if (k == 0) { check = ...
Chưa Hiểu Destructors và Constructor
#include<iostream> #include<string> using std::cout; using std::endl; using std::string; class Person{ public: Person(){ cout << "Person()"<<endl; } ~Person(){ cout << "~Person()" << endl; } }; void main(){ cout << "befor the scoped block" ...