වටකුරු ගණනය කිරීම

ඕනෑම දශම ස්ථාන ගණනකට අංකයක් වටකුරු කරන්න, ඉහළට හෝ පහළට.

දශම ස්ථාන (හෝ සැලකිය යුතු සංඛ්යා). දශම / සිය ගණන් වටා0හෝ ඍණ අගය භාවිතා කරන්න.
වටකුරු (සමීපම)
වටකුරු
පහළට වටකුරු
කෙටි කල (කපන්න)

ඔබ ටයිප් ලෙස ප්රතිඵල යාවත්කාලීන.

මෙම කැල්ක්යුලේටරය ගැන

the standard rounding, the value is rounded to the digit just past the cut-off — 5 or more rounds up, less than 5 rounds down — so 3.14159 to two decimal places is 3.14. The other columns forceadirectional mode: for 2.673 the nearest and floor both give 2.67 while the ceiling gives 2.68, and truncation simply drops the extra digits to the left of the point instead, andanegative number of places rounds to −2 places becomes 3500.The standard rounding, the value is rounded to the digit just past the cut-off — 5 or more rounds up, less than 5 rounds down — so 3.14159 to two decimal places is 3.14.The always-up (ceiling) rounding looks at the digit just past the cut-off — 5 or more rounds up, less than 5 rounds down — so 3.14159 to two decimal places is 3.14.The always-down (floor) rounding looks at the digit just past the cut-off — 3.14.The truncation mode shows the value of the value in the first column.Rounding matters for money, measurements, reporting toasense of accuracyRounding matters for money, measurements, reporting toasense of accuracyRounding matters for money, measurements, reporting toasense of accuracyRounding matters for money, measurements, reporting toasense of accuracyRounding matters for money, measurements, reporting toasense of accuracyRounding matters for money, measurements, reporting toasense of accuracyRounding matters for money, measurements, reporting toasense of accuracyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRounding matters for moneyRou

නිතර අසන ප්රශ්න

දශම ස්ථාන සඳහා වටා වැඩ කරන්නේ කෙසේද?

අංකය බලන්න:5හෝ ඊට වැඩි වට, අඩු5කෝණ පහතට. ස්ථාන දෙකක් 3.14159 3.14 වේ.

දශම ස්ථාන ඍණ සංඛ්යාව කරන්නේ කුමක්ද?

එය දශම ස්ථානයේ වම් පසට වටකුරු වේ: −1 ආසන්නතම දහයට වටකුරු වේ, −2 ආසන්නතම සියයට. 3457 සිට −2 ස්ථාන 3500 වේ.

ඉහළට වටකුරු හා පහළට වටකුරු අතර වෙනස කුමක්ද?

2.673 සඳහා ස්ථාන දෙකක්, ළඟම හා පහළ දෙන්න 2.67 නමුත් ඉහළ දෙන 2.68. 2.67 සඳහා ස්ථාන දෙකක්, ළඟම හා පහළ දෙන්න 2.67 නමුත් ඉහළ දෙන 2.68.

කෙටි ප්රතිඵල පෙන්වන්නේ කුමක්ද?

එය කිසිදු වටා තොරව ඔබ තෝරා ස්ථානයට ඔබ්බට අංක කපා. 2.673 දශම ස්ථාන දෙකකට කෙටි 2.67 වේ, පවා සමීපම වටා ද මෙහි ලබා දෙයි 2.67 හා 2.678 2.68 වටා අතර 2.67 කෙටි වනු ඇත.

මම දශම ස්ථාන වෙනුවට සැලකිය යුතු සංඛ්යාවන්ට වටා කරන්නේ කෙසේද?

දශම ස්ථාන සිට සැලකිය යුතු සංඛ්යා වෙත මාදිලිය මාරු.3එවිට පළමු අර්ථවත් අංක තුනක් තබා නිරවද්යතාව, ඒ නිසා 0.0045213 0.00452 බවට පත් වේ.

වටකරලා දාන එකෙන් හැමවෙලේම අංකය වැඩි වෙනවද?

ධන සංඛ්‍යා සඳහා පමණි. ඉහළට වට කිරීම ධන අසීමිතය වෙතට යයි, එබැවින් -2.7 පූර්ණ සංඛ්‍යාවකට වට කිරීම -2, එය විශාල, කුඩා නොවේ.

❤️ ආදරය Calculator.Free? ඒක බෙදාගන්න

𝕏  X Facebook Reddit
API - කේතය සිට මෙම කැල්ක්යුලේටරය භාවිතා

කිසිදු යතුරක් අවශ්ය - නිදහස් JSON අවසන් ස්ථානයක් ලෙස මෙම ගණනය කිරීම් ඇමතුම්. විමසුම් පරාමිතීන් හෝ JSON ලෙස පහත ක්ෂේත්ර අගයන් යවන්න. සම්පූර්ණ API ලේඛන කියවන්න →

අවසාන ස්ථානය

GET https://calculator.free/api/v1/rounding/

curl

curl "https://calculator.free/api/v1/rounding/?number=3.14159&places=2&mode=decimals"

JavaScript fetch()

const r = await fetch(
  "https://calculator.free/api/v1/rounding/?" + new URLSearchParams({
    "number": "3.14159",
    "places": "2",
    "mode": "decimals"
  }));
const data = await r.json();
console.log(data.results);

ප්රතිඵල සාමාන්ය මග පෙන්වීම සඳහා පමණක් ඇස්තමේන්තු, මූල්ය, වෛද්ය හෝ බදු උපදෙස් නොවේ.