/******************************************************************************
https://www.onlinegdb.com/online_c++_compiler
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
int data[6] = {5, 1, 4, 3, 2};
int n = 5;
int searchAngka(int input){
for(int i = 0; i < n; i++){
if(input == data[i]){
// printf("Ketemu di index-%d", i);
return i;
}
}
return -1;
}
int main()
{
//Search
//Pencarian data bisa dalam array, struct
int input = 3;
int index = searchAngka(input);
if(index < 0){
printf("Tidak Ketemu");
}else{
printf("Ketemu di index-%d", index);
}
return 0;
}
Tidak ada komentar:
Posting Komentar