Forked from Benoît Boucart's Pen Trigger a CSS animation on scroll.
A Pen by George Barker on CodePen.
vector<string> answer; | |
void getStrings( string s, int digitsLeft ) | |
{ | |
if( digitsLeft == 0 ) // the length of string is n | |
answer.push_back( s ); | |
else | |
{ | |
getStrings( s + "0", digitsLeft - 1 ); | |
getStrings( s + "1", digitsLeft - 1 ); |
Thêm cái này vào file .h | |
#ifndef ADD_H | |
#define ADD_H | |
class Add | |
{ | |
... | |
}; | |
#endif |
#include "ex.h" | |
#include <iostream> | |
using namespace std; | |
class ex | |
{ | |
void Chao() | |
{ | |
cout<<"Hello"; | |
} |
/* | |
Student: Van-Duyet Le | |
ID: 13520171 | |
Date: 10-02-2015 | |
*/ | |
/****** Init Database ******/ | |
-- DROP DATABASE [DBMS_Giuaki_2014] | |
-- CREATE DATABASE [DBMS_Giuaki_2014] |
Forked from Benoît Boucart's Pen Trigger a CSS animation on scroll.
A Pen by George Barker on CodePen.
SELECT conn.session_id, sson.host_name, sson.login_name, | |
sqltxt.text, sson.login_time, sson.status | |
FROM sys.dm_exec_connections conn | |
INNER JOIN sys.dm_exec_sessions sson | |
ON conn.session_id = sson.session_id | |
CROSS APPLY sys.dm_exec_sql_text(most_recent_sql_handle) AS sqltxt | |
ORDER BY conn.session_id |
/** | |
* Van-Duyet Le | |
* | |
* Data file: av.dd (http://blackberryvietnam.net/threads/du-lieu-tu-dien-cho-ung-dung-ddict.897) | |
*/ | |
#include <stdio.h> | |
//#include <conio.h> | |
#include <stdlib.h> | |
#include <string.h> |
/** | |
* Van-Duyet Le | |
* | |
* Data file: av.dd (http://blackberryvietnam.net/threads/du-lieu-tu-dien-cho-ung-dung-ddict.897) | |
*/ | |
#include <stdio.h> | |
//#include <conio.h> | |
#include <stdlib.h> | |
#include <string.h> |
#include <stdio.h> | |
#include <conio.h> | |
#include <string> | |
#define MAX 1000 | |
int main() | |
{ | |
FILE* f; | |
char str[300]; |
CREATE PROCEDURE [dbo].[TinhSoSachCuaLoaiSach] | |
@MaLoaiSach char(4), | |
@SoSach int OUTPUT | |
AS | |
BEGIN |