fork download
  1. #include <stdio.h>
  2. main(){
  3. #กำหนดค่าที่โจร์ทให้
  4. X1= 11
  5. X2= 15
  6.  
  7. # คำนวณค่า X2
  8. X2 = 2 * S - X1
  9.  
  10. # แสดงผลลัพธ์
  11. print(f"ค่า X2 คือ: {X2}")
  12. }
Success #stdin #stdout 0.03s 25984KB
stdin
Standard input is empty
stdout
#include <stdio.h>
main(){
	#กำหนดค่าที่โจร์ทให้
	X1= 11
	X2= 15
	
	# คำนวณค่า X2
	X2 = 2 * S - X1
	
	# แสดงผลลัพธ์
	print(f"ค่า X2 คือ: {X2}")
}