মেঝে ফাংশন
মেঝে সবসময় ঋণাত্মক অসীমের দিকে নিচের দিকে বৃত্তাকার হয়, বিশেষ করে ঋণাত্মক সংখ্যার জন্য গুরুত্বপূর্ণ।
রাউন্ডিং ক্যালকুলেটর
একটি নম্বর লিখুন এবং আপনার রাউন্ডিং পছন্দগুলি বেছে নিন
|
🪄 দ্রুত উদাহরণ
📋 How It Works
কিভাবে এটা কাজ করে
1
Step 1
Choose the target precision or place value.
2
Step 2
Drop extra digits and move downward toward negative infinity.
3
Step 3
Return a value that is never greater than the original at that precision.
📊 Examples
কাজের উদাহরণ
Examples highlight where floor and truncate differ on negatives.
| ইনপুট | টার্গেট | পদ্ধতি | ফলাফল |
|---|---|---|---|
| 2.99 | নিকটতম পুরো নম্বর | গোলাকার নিচে (মেঝে) | 2 |
| -2.01 | নিকটতম পুরো নম্বর | গোলাকার নিচে (মেঝে) | -3 |
| 12.309 | নিকটতম শততম (2 ডিপি) | গোলাকার নিচে (মেঝে) | 12.30 |
টিপস
সাধারণ ভুল
Avoid these frequent rounding errors when validating outputs.
- Treating floor as simple digit cut-off.
- Expecting floor to behave like nearest rounding.
- Using floor when toward-zero behavior is required.
- Ignoring sign when validating test results.
❓ FAQ
প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী
Is floor the same as truncate?
No. Floor moves toward negative infinity while truncate moves toward zero.
How does floor work for negatives?
Negative numbers become more negative whenever there is a remainder.
When is floor useful?
Floor is useful for conservative lower-bound calculations.
Can I compare floor and ceiling quickly?
Yes. Related links let you test the same inputs under both methods.