Untitled

 avatar
unknown
c_cpp
2 years ago
147 B
2
Indexable
using namespace std;
#include <iostream>

int main()
{
    float a;
    float b;
    cin >> a;

    b = a - (int)a;

    cout << b;
}
Editor is loading...
Leave a Comment