kali ini saya akan memposting kasus-kasus materi Array Satu Dimensi
Source Code:
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
void masuk_data(int A[], int n )
{
int i;
for(i=0;i<n;i++){
cout << "Data ke- : " << i+1 << " > ";
cin >>A[i];
}
}
int maksimum2(int a,int b)
{
if(a>b) return (a);
else return (b);
}
int maksimum (int data [] ,int n)
{
int i, temp;
temp=data[0];
for(i=0;i<n;i++)
temp=maksimum2(temp, data[i]);
return(temp);
}
main()
{
int n;
int bilangan[10];
cout<<"Masukkan Banyak Data :";
cin>>n;
masuk_data(bilangan,n);
cout << "Nilai terbesar: "<<maksimum (bilangan,n);
cout<<endl;
return 0;
}
Dev C++:
lanjutan....
Output:
Raptor:
Source code:
#include <iostream>
#include <string.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int palindrom (char*s){
int i,pj;
pj=strlen(s);
for (i=0;i<=pj/2;i++)
if (s[i]!=s[pj-i-1]) return 0;
return 1;
}
main ()
{
char*kata;
cout<<"masukkan Sebuah Kalimat :";
gets(kata);
if (palindrom(kata))
cout<<"adalah palindrom"<<kata;
else
cout<<"Bukan palindrom "<<kata;
return 0;
}
Dev C++:
Output:
Raptor:
lanjutan....
untuk kasus 6.1 dan 6.5 dapat dilihat di :http://ratihpuspita29.blogspot.co.id/search/label/bab7
untuk kasus 6.2 dan 6.4 dapat dilihat di:http://ghaidaazzahra771.blogspot.co.id/search/label/Tugas/20Kelompok/205
Wassalamu'alaikun wr.wb
Tidak ada komentar:
Posting Komentar