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

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
2번째 줄: 2번째 줄:
;C++ floor()
;C++ floor()


<source lang='cpp'>
<syntaxhighlight lang='cpp'>
#include <iostream>
#include <iostream>
#include <cmath>
#include <cmath>
12번째 줄: 12번째 줄:
   cout << floor(9.98) << endl; // 9
   cout << floor(9.98) << endl; // 9
}
}
</source>
</syntaxhighlight>
<source lang='cpp'>
<syntaxhighlight lang='cpp'>
#include <iostream>
#include <iostream>
#include <math.h>
#include <math.h>
23번째 줄: 23번째 줄:
   cout << floor(9.98) << endl; // 9
   cout << floor(9.98) << endl; // 9
}
}
</source>
</syntaxhighlight>
<source lang='cpp'>
<syntaxhighlight lang='cpp'>
#include <iostream>
#include <iostream>
int main() {
int main() {
32번째 줄: 32번째 줄:
     // 123.45
     // 123.45
}
}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:41 판

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>
int main() {
    float f = 123.456;
    float res = (int)(f*100.0)/100.0;
    std::cout << res << std::endl;
    // 123.45
}

2 같이 보기

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