Skip to content

Instantly share code, notes, and snippets.

View tin-pham's full-sized avatar
🏠
Working from home

Bao.Tin tin-pham

🏠
Working from home
View GitHub Profile
@tin-pham
tin-pham / ranking.c
Created March 23, 2022 09:01
Find rank of graph
#include <stdio.h>
#define MAX_VERTICES 100
#define MAX_LIST 100
typedef struct {
int data[MAX_LIST];
int currentSize;
} List;
@tin-pham
tin-pham / order.css
Last active November 18, 2021 13:21
.test{
content: '';
/* display stuff */
display: flex;
/* positioning stuff */
float: left;
position: absolute;
package buoi5;
import java.util.Scanner;
public class HangHoa {
private String mso, ten, nxsuat;
private double giaTien;
public HangHoa() {
package buoi5;
import java.util.Scanner;
public class HoaDon {
private String mso, tde, nvien;
private int length;
private double tongTien = 0;
private HangHoa hanghoa[];