Skip to content

Instantly share code, notes, and snippets.

@vixtory09678
Created April 2, 2019 13:32
Show Gist options
  • Save vixtory09678/43eafd261d7055a4f3f6ea956e67e4bf to your computer and use it in GitHub Desktop.
Save vixtory09678/43eafd261d7055a4f3f6ea956e67e4bf to your computer and use it in GitHub Desktop.
int group = 10;
int student = 5;
int totalStudentInClass = group * student;
float totalStudentInclass = 100.0;
float group = 5.0;
float studentInGroup = totalStudentInclass / group; // ที่ใช้ Float เพราะว่าในกรณีที่มีการหาร ข้อมูลที่ได้อาจจะมีทศนิยม
// เพราะฉะนั้นตัวแปรอื่นที่เอามาคำนวณด้วย ก็ควรจะเป็นตัวแปรแบบทศนิยมเช่นเดียวกัน
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment