Editorial for C Bài 1.A6: Khối 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 diện tích toàn phần 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 diện tích toàn phần là: \(S_{hộp chữ nhật} = 2(ab+bc+ac)\).
Code mẫu
#include <stdio.h>
int main() {
//Khai báo và nhập dữ liệu vào a, b, c
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
//Sử dụng công thức tính diện tích toàn phần của hình hộp chữ nhật và in ra màn hình kết quả thu được
int res = (a * b + b * c + a * c) * 2 ;
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