ছেঁটে নম্বর

ছেদন শূন্যের দিকে নির্ভুলতা কাটে এবং রাউন্ড-আপ বা টাই নিয়ম প্রয়োগ করে না।

🔢
রাউন্ডিং ক্যালকুলেটর
একটি নম্বর লিখুন এবং আপনার রাউন্ডিং পছন্দগুলি বেছে নিন
|
🪄 দ্রুত উদাহরণ

কিভাবে এটা কাজ করে

1

Step 1

Choose the place value or decimal precision to keep.

2

Step 2

Remove all digits beyond that position.

3

Step 3

Return the toward-zero result.

কাজের উদাহরণ

Examples show deterministic cut-off behavior for positive and negative inputs.

ইনপুট টার্গেট পদ্ধতি ফলাফল
2.99 নিকটতম পুরো নম্বর কাঁটা (শূন্যের দিকে) 2
-2.99 নিকটতম পুরো নম্বর কাঁটা (শূন্যের দিকে) -2
45.6789 নিকটতম শততম (2 ডিপি) কাঁটা (শূন্যের দিকে) 45.67

সাধারণ ভুল

Avoid these frequent rounding errors when validating outputs.

  • Calling truncate a nearest-value rounding method.
  • Confusing truncate with floor for negatives.
  • Using truncation where tie-aware rounding is required.
  • Dropping expected output precision in display formatting.

প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী

Is truncation the same as rounding?
No. Truncation removes digits without choosing the nearest value.
How is truncate different from floor?
Truncate goes toward zero, while floor goes toward negative infinity.
When should truncation be used?
Use truncation when exact cut-off behavior is required by your process.
Can truncation be applied to large place values?
Yes. It works for tens, hundreds, thousands, and other supported places.