Scientists have discovered the smallest known fish in the world. Found in swamps on Sumatra, Paedocyprisis only 7.9mm long. Unfortunately, their diverse habitat, home to other species that aren't found anywhere else, is threatened by logging, agriculture, and the spread of cities. From London's Natural History Museum: The tiny, see-through Paedocypris fish have the appearance of larvae and have a reduced head skeleton, which leaves the brain unprotected by bone.
They live in dark tea-coloured waters with an acidity of pH3, which is at least 100 times more acidic than rainwater.
'This is one of the strangest fish that I've seen in my whole career', said Ralf Britz, zoologist at the Natural History Museum.
'It's tiny, it lives in acid and it has these bizarre grasping fins. I hope we'll have time to find out more about them before their habitat disappears completely.'
The smallest fish is called Paedocrypsis progenetica. The adult is a mere 8 mm long, or 0.31 inches. It is from Indonesia, and is in the carp family.
The Arctic Ocean is the smallest ocean
Vatican City
The world's smallest fish is Paedocrypis progenetica.
int findSmallest(int *list, int listsize) { int i; int smallest = list[0]; for(i = 1; i < listsize; i++) { if(list[i] < smallest) smallest = list[i]; } return smallest; }
The smallest fish in the world that has been currently recorded,yes.
the worlds biggest is the whale shark and the smallest is the kandiru
The smallest fish in the world
In Animal Crossing: Wild World, the smallest fish is the Pale Chub. This fish can be found in rivers and sells for 160 Bells.
Touch the word "smallest fish" then touch the smallest fish that appears.
The world's smallest fish is the Paedocypris progenetica, which is found in the peat swamps of Indonesia. It grows to a maximum length of about 0.3 inches (7.9 mm).
i beleve it is the Paedocypris fish. it is about 6.5 mm in lenth. and are Found in swamps on Sumatra.
int smallest_positive(int a, int b, int c) { int s = 0; while (a && b && c) { s++; a--; b--; c--; } return s; // works only for positive integers } int smallest(int a, int b, int c) { int test = INT_MIN; while ((a-test) && (b-test) && (c-test)) test++; return test; }