#49751: cpp ||||||||||||||||


yp11451207@yphs.tp.edu.tw (706-37黃麒恩)

學校 : 臺北市私立延平高級中學
編號 : 312871
來源 : [203.72.178.1]
最後登入時間 :
2025-09-27 11:56:14

#include<iostream>
#include<iomanip>
using namespace std;
int main(){
    double a;

    while(cin>>a){
        if(a>0||a==0){
        cout<<"|"<<fixed<<setprecision(4)<<a<<"|"<< "="<<a*1<<"\n";
        }else{

        cout<<"|"<<fixed<<setprecision(4)<<a<<"|"<< "="<<a*-1<<"\n";
        }
    }
}