"C++ floor()"의 두 판 사이의 차이

2번째 줄: 2번째 줄:
;C++ floor()
;C++ floor()


<syntaxhighlight lang='cpp'>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
#include <cmath>
#include <cmath>
13번째 줄: 13번째 줄:
}
}
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='cpp'>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
#include <math.h>
#include <math.h>
24번째 줄: 24번째 줄:
}
}
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='cpp'>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
using namespace std;
using namespace std;

2023년 9월 17일 (일) 15:15 판

1 개요

C++ floor()
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
  cout << floor(3.14159) << endl; // 3
  cout << floor(-3.14159) << endl; // -4
  cout << floor(9.98) << endl; // 9
}
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
  cout << floor(3.14159) << endl; // 3
  cout << floor(-3.14159) << endl; // -4
  cout << floor(9.98) << endl; // 9
}
#include <iostream>
using namespace std;
int main() {
    float f = 123.456;
    float res = (int)(f*100.0)/100.0;
    cout << res << endl; // 123.45
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}