這題其實難在負數轉正數,但是其實只要乘上-1就好了。
#include <iostream>using namespace std;int main(){ int a; cin>>a; (a<0)?a*=-1:a=a; cout<<a;}