1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
qwelly [4]
2 years ago
7

1.1.1 Write the total number of winners in the correct South African number format. ​

Mathematics
2 answers:
baherus [9]2 years ago
5 0

Answer:

1 234 567,89

The American variation that we had become used to is commas for the thousands separator and a full stop for the decimal point.

1,234,567.89

In programming, I have only ever seen the use of the full stop for the decimal mark, and no thousands separator. However when printing numbers for humans to read, its important to use the thousands separator and to use a number format that the largest group of readers will easily understand.

If your readers are South African, this handy JavaScript function will format your numbers correctly with 2 decimal places, which is mostly useful for displaying currency values. This code is a modified version of this script.

function za_format(number) {

number = parseInt(number).toFixed(2);

number += '';

var x = number.split('.');

var x1 = x[0];

var x2 = x.length > 1 ? ',' + x[1] : '';

var rgx = /(\d+)(\d{3})/;

while (rgx.test(x1)) {

x1 = x1.replace(rgx, '$1' + ' ' + '$2');

}

return x1 + x2;

Step-by-step explanation:

hope it helps

prohojiy [21]2 years ago
4 0

Answer:

As of February 2022, South Africa has played 449 Test matches resulting in 171 victories, 154 defeats and 124 draws for an overall winning percentage of 38.08. Statistics are correct as of South Africa v New Zealand at Hagley Oval, 1st Test, 17-19 February 2022.

Format

The way that something appears or is set out.

You might be interested in
What is the slope and y-intercept of the following equation: f(x) = 2x - 5
seropon [69]

Answer:

slope- 2

y int- -5

Step-by-step explanation:

8 0
3 years ago
One professional basketball player typically attempts eight free throws per game. Let X represent the number of free throws made
tekilochka [14]
A; the probability of the number of free throws made out of 8 is at most 3.

I might be wrong, but I’m 90% sure I’m right ☺️
4 0
3 years ago
Solve for x 5x+34=-2(1-7x)
defon

Answer:

x=4

Step-by-step explanation:

5 0
3 years ago
Read 2 more answers
The sale price of every item in a store is 85% of its usual price.
Vesnalui [34]

Answer:

25.5

Step-by-step explanation:

85/100*30

25.5

Hope this helps!

6 0
3 years ago
Read 2 more answers
Un numero multiplicado mede 16 y sumado 10? ​
Vika [28.1K]

Answer:

8×2=16 8+2=10

Step-by-step explanation:

3 0
3 years ago
Other questions:
  • If Alex and Brandon work together they will clean the school in 15 hours. Working alone, Brandon can finish the same job in 20 h
    13·1 answer
  • Jamies family is eating leftover pizza for dinner there ere 1/3 of pizza left left over if 6 people are eating and they all rece
    15·1 answer
  • What is 4575 rounded to the nearest thousand
    15·2 answers
  • The precooked weight of a hamburger is 0.25 pounds. Convert this mass to centigrams (cg). (1lb = 16oz, 16oz = 454g)
    12·1 answer
  • Can someone help me with this
    14·1 answer
  • 4<br> Subtract. Write the expression below in simplest form.<br> (-x + 3) - (4x-10)
    11·1 answer
  • For all values of x,<br>f(x) = x^2 + 3x and g(x) = x - 4<br>Show that fg(x) = x^2 - 5x + 4​
    8·1 answer
  • Can someone please help I can’t understanddd.
    8·1 answer
  • 10 POINTS!!!
    11·2 answers
  • May someone please help me? This is due today and I'm confused.​
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!