fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int age;
  6. cout << "Enter your age: "; // แสดงข้อความ
  7. cin >> age; // รับค่าจากผู้ใช้
  8. cout << "You are " << age << " years old." << endl; // แสดงผล
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Enter your age: You are 32764 years old.