answersLogoWhite

0


Best Answer

Sicily is the largest

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the name of the largest island int the mediterranean sea?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write a c program to find largest of 3 numbers using pointers?

Find the largest of two, then find the largest of that value and the third value. int* max (int* a, int* b) { return (a*) > (b*) ? a : b; } int* max_of_three (int* a, int* b, int* c) { return max (max (a, b), c); }


Write a macro that obtains the largest of three numbers?

#include <iostream.h> #include <conio.h> void main() { clrscr(); int largest(int,int,int); cout<<"Enter 3 Integer Numbers\n"; int a,b,c; cin>>a>>b>>c; int result; result=largest(a,b,c); cout<<"\n\nLargest Value of Inputed is "<<result; getch(); } inline largest(int a,int b,int c) { int z; z=(a>b)?((a>c)?a:c):((b>c)?b:c); return(z); }


Write a C plus plus program and flow chart to find the largest of the 3 numbers?

To find the largest of three numbers, first find the largest of two numbers: int max (int x, int y) { return x<y?y:x; } Now you can use this one function to find the largest of three numbers: int max (int x, int y, int z) { return max (max (x, y), z); }


What is the name of a port in Samoa?

What port do you mean?....Airports: Faleolo (Int.), Fagalii (Dom.)....Wharfs: Mulivai (Int.), Salelologa (Savaii, for inter-island travel)


Write a c program to find the largest and second largest number out of 3 numbers?

// return the larger of any 2 numbers int larger (int a, int b) { return a>b?a:b; } // return the largest of any 3 numbers int largest (int a, int b, int c) { return larger (larger (a, b), c)); } // return the middle value of any 3 numbers int middle (int a, int b, int c) { if (a>b) a^=b^=a^=b; // swap a and b (b is now the larger of the two) if (b>c) b^=c^=b^=c; // swap b and c (c is now the largest of all three) return larger (a, b); // return the larger of a and b }


How do you find the largest of 3 numbers in computer programming?

To find the largest of three numbers you must first find the largest of two numbers: int max (int a, int b) { return a>b?a:b; // or, equivalently: if (a>b) return a; else return b; } Now we can use this function to find the maximum of three: int max3 (int a, int b, int c) { return max (max (a,b), c); }


How do you write a C plus plus function lastLargestIndex that returns the index of the last occurrence of the largest element in the array?

int lastLargestIndex(int a[],int n) //a=array, n= number of elements in array { int max=a[0],maxp=0; //max=largest no., maxp= position of largest no. for(int i=0;i<n;i++) if(a[i]>=max) { max=a[i]; maxp=i; } return maxp; }


What is the second largest island int he world?

The second largest island in the world is New Guinea, located in the southwestern Pacific Ocean. It is divided between the countries of Papua New Guinea to the east and Indonesia to the west.


What a java program to find largest and smallest value store in the array?

Implement these methods: public static int smallest(int[] arr) { int small = arr[0]; for(int i = 1; i < arr.size(); i++) if(arr[i] < small) small = arr[i]; return small; } public static int largest(int[] arr) { int large = arr[0]; for(int i = 1; i < arr.size(); i++) if(arr[i] > large) large = arr[i]; return large; }


Write a c plus plus program to find largest among three number using control statement and ternary operators?

int max (int a, int b) { return a<b?b:a; } int max3 (int a, int b, int c) { return max (max (a, b), c); }


Write a function in c that returns the largest value stored in an array-of-int Test the function in a simple program?

int max(int arr[], int arrSize){int maximum = arr[0];for (int i = 0; i < arrSize; i++){if (maximum < arr[i]){maximum = arr;}}return maximum;}


How do you write a C program to find the largest of 10 integers in an array?

#include&lt;stdio.h&gt; // returns the index of the largest value in the array int max (int a[], unsigned size) { if (!size) return -1; // invalid array int index = 0; // assume index 0 holds the largest value (so far) for (int i=1; i&lt;size; ++i) { // traverse the remainder of the array if (a[i]&gt;a[index]) { // compare with the current largest index = i; // the current value is larger } } return index; // a[index] holds the largest value } int main (void) { int x[10] = {7, 4, 3, 9, 5, 2, 1, 8, 6}; printf ("The largest value in the array is %d\n", max (x, 10)); return 0; }