Skip to content

Instantly share code, notes, and snippets.

View hoctructuyencntt's full-sized avatar

Học trực tuyến Công nghệ thông tin hoctructuyencntt

View GitHub Profile
<p>Cấu trúc cơ bản một tập tin HTML.</p>
<p>DOCTYPE là gì?</p>
<html>
<head>
</head>
<body>
</body>
</html>
<p>Tính tổng hai số nguyên a và b.</p>
<p><b>Gợi ý:</b> khai báo các biến a, b theo trình tự.</p>
int main(){
int a;
int b;
int c = a + b;
}
import React, { useState } from "react";
import ReactDOM from "react-dom";
function FavoriteColor() {
const [color, setColor] = useState("red");
return (
<>
<h1>My favorite color is {color}!</h1>
<button