Untitled
unknown
plain_text
2 years ago
124 B
9
Indexable
#include <iostream>
using namespace std;
int main()
{
double n;
cin >> n;
int v = (int)(n + 0.5);
cout << v;
}Editor is loading...
Leave a Comment
#include <iostream>
using namespace std;
int main()
{
double n;
cin >> n;
int v = (int)(n + 0.5);
cout << v;
}