Translate this C program to Java #include #define MAX_SIZE 100 // Maximum array size int main() { int arr[MAX_SIZE]; int size, i, toSearch, found; /* Input size of array */ printf("Enter number of elements: "); scanf("%d", &size); /* Input elements of array */ for(i=0; i
Translate this C program to Java
#include <stdio.h>
#define MAX_SIZE 100
// Maximum array size
int main()
{
int arr[MAX_SIZE];
int size, i, toSearch, found;
/* Input size of array */
printf("Enter number of elements: ");
scanf("%d", &size);
/* Input elements of array */
for(i=0; i<size; i++)
{
printf("Integer#%d: ", i+1);
scanf("%d", &arr[i]);
}
printf("Elements of array: ");
for(int i=0; i<size; i++)
{
printf("%d ", arr[i]);
}
printf("\nElement to search in the array: ");
scanf("%d", &toSearch);
/* Assume that element does not exists in array */
found = 0;
for(i=0; i<size; i++)
{
/* If element is found in array then raise found flag and terminate from loop */
if(arr[i] == toSearch)
{
found = 1;
break;
}
}
/* If element is not found in array */
if(found == 1)
{
printf("Found!");
}
else
{
printf("Not found");
}
return 0;
}
Step by step
Solved in 4 steps with 3 images