fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6. int X1 = 11; // กำหนดค่า X1
  7. int S = 15; // กำหนดค่า S
  8. int X2;
  9.  
  10. // คำนวณหาค่า X2
  11. X2 = 2 * S - X1;
  12.  
  13. // แสดงผลลัพธ์
  14. cout << "ค่าของ X2 คือ: " << X2 << endl;
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0.03s 26016KB
stdin
Standard input is empty
stdout
#include <iostream>

using namespace std;

int main() {
    int X1 = 11; // กำหนดค่า X1
    int S = 15; // กำหนดค่า S
    int X2;

    // คำนวณหาค่า X2
    X2 = 2 * S - X1;

    // แสดงผลลัพธ์
    cout << "ค่าของ X2 คือ: " << X2 << endl;

    return 0;
}