沒有想像中的難 負轉正只要在前面加負號就好(負負得正)
include<iostream>
using namespace std;
int main(){
int x ;
cin >> x ;
( x<0 ) ? cout << -x << endl : cout << x << endl ;
return 0 ;
}