ตัวอย่างการเขียนโค้ดภาษา C++ ในการคำนวณหาพื้นที่สี่เหลี่ยม
ซูโดโค้ด (Pseudo Code)
เริ่มต้นโปรแกรม
ประกาศตัวแปร width, height, และ area เป็นทศนิยม (double)
แสดงข้อความ "Enter the width of the rectangle: "
รับค่าความกว้าง (width) จากผู้ใช้
แสดงข้อความ "Enter the height of the rectangle: "
รับค่าความสูง (height) จากผู้ใช้
คำนวณพื้นที่สี่เหลี่ยมผืนผ้าโดยใช้สูตร width * height
เก็บผลลัพธ์ในตัวแปร area
แสดงผลลัพธ์ของพื้นที่สี่เหลี่ยมผืนผ้าในตัวแปร area
จบโปรแกรม
ตัวอย่างโค้ด
#include <iostream>
using namespace std;
int main() {
double width, height, area;
cout << "Enter the width of the rectangle: ";
cin >> width;
cout << "Enter the height of the rectangle: ";
cin >> height;
area = width * height;
cout << "The area of the rectangle is: " << area << endl;
return 0;
}
แสดงผล
Enter the width of the rectangle: 10
Enter the height of the rectangle: 5
The area of the rectangle is: 50
Enter the width of the rectangle: 100
Enter the height of the rectangle: 100
The area of the rectangle is: 10000