Editorial for C Bài 1.A5: Thể tích hình hộp
Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Hướng dẫn
Đây là một bài toán tính thể tích của một hình hộp chữ nhật. Với chiều dài, chiều rộng, chiều cao lần lượt là \(a, b, c\), ta có công thức tính thể tích là: \(V_{hộp chữ nhật} = a * b * c\).
Code mẫu
#include <stdio.h>
int main() {
//Khai báo và nhập dữ liệu vào các biến a, b, c
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
//Sử dụng công thức tính thể tích hình hộp chữ nhật và in ra màn hình kết quả thu được
int res = a * b * c;
printf("%d", res);
return 0;
}
Đăng ký khóa học: https://www.facebook.com/clblaptrinhfullhouse
SĐT liên hệ: 0372229686
Youtube: CLB Lập Trình Full House
Fullhouse dev đồng hành trên từng dòng code
Comments