Skip to content

Instantly share code, notes, and snippets.

@golfiti
Last active May 20, 2022 02:34
Show Gist options
  • Save golfiti/45c28e71a45547ffb4148fa52958a5c3 to your computer and use it in GitHub Desktop.
Save golfiti/45c28e71a45547ffb4148fa52958a5c3 to your computer and use it in GitHub Desktop.
void main() {
double total = 28.65;
double price = 9.55;
double volume = total / price;
print(volume);
// *volume จะต้องปัดลงเป็นจำนวนเต็ม
// ex.
// 28.65/9.55 = 3
// 28.64/9.55 = 2
// 28.66/9.55 = 3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment