https://www.mydevice.io/ https://en.wikipedia.org/wiki/Display_aspect_ratio
- Color Circle https://shreyasminocha.me/blog/hsl-intuition/
package buoi5; | |
import java.util.Scanner; | |
public class HoaDon { | |
private String mso, tde, nvien; | |
private int length; | |
private double tongTien = 0; | |
private HangHoa hanghoa[]; |
package buoi5; | |
import java.util.Scanner; | |
public class HangHoa { | |
private String mso, ten, nxsuat; | |
private double giaTien; | |
public HangHoa() { |
.test{ | |
content: ''; | |
/* display stuff */ | |
display: flex; | |
/* positioning stuff */ | |
float: left; | |
position: absolute; |
#include <stdio.h> | |
#define MAX_VERTICES 100 | |
#define MAX_LIST 100 | |
typedef struct { | |
int data[MAX_LIST]; | |
int currentSize; | |
} List; |