tuan

nothing
Anonymous
c_cpp
08/29/2021 11:32 AM
252 B
36
Indexable
#include <iostream>
#include <iomanip>
#include <cmath>
#include <stdio.h>
using namespace std;
// 1. absolute value
int main(){
    int n;
    cin >> n;
    cout << abs(n);
    return 0;
}
Editor is loading...