Cute Finding Nemo

The best art is music

I use music for all thing, I can't live without music

Minggu, 17 April 2016

Halaman 538

#Halaman 538 #include <iostream>#include <string.h>#include <conio.h>using namespace std;int main(){int i,jum;char string[100];cout<<"Masukan sembarang kalimat:\n";cin.getline(string,100); //membaca spasi//mengubah huruf awal menjadi huruf kapitalif((string[0]>='a')&& (string[0]<='z'))string[0]=(char)string[0]-32;//mengubah huruf setelah huruf awal menjadi huruf keciljum=1;int d=0;for(i=0;i<(int)strlen(string);i++){    if(i%2==0){    if((string[jum]>='A')&& (string[jum]<='Z'))string[jum]=(char)string[jum]+32;jum++;}}//mengubah...

Chapter 4 - Kasus 4.6

#Chapter 4 - Kasus 4.6 #include <stdio.h>#include<iostream>/* run this program using the console pauser or add your own getch, system("pause") or input loop */using namespace std;main() {    int x;    int y;    cout<<"\nMasukkan bilangan ke- 1 :";    cin>>x;    cout<<"Masukkan bilangan ke-2 :";    cin>>y;    if(x>y){        cout<<"lebih besar dari pada\n\n ";cin>>x,y;}else...

Chapter 4 - Kasus 4.5

#Chapter 4 - Kasus 4.5 #include <iostream> #include <stdio.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int main() {      int n, *arr, onee = 0, twoo, threee, total = 0, maxx = -1, temp_maxx;     cin >> n;     arr = new int[n];     for (int i = 0; i < n; i++) {         cin >> arr[i];         total +=...

Chapter 4 - Kasus 4.4

#Chapter 4 - Kasus 4.4 #include <iostream>/* run this program using the console pauser or add your own getch, system("pause") or input loop */using namespace std;int main(int argc, char** argv) {    int a[20],n;    cout<<"Batas : ";    cin>>n;        for (int i=0;i<n;i++){    cout<<"Data : ";    cin>>a[i];}    for (int i=0;i<n;i++){    if(a[i]==a[i+1])    cout<<a[i];   ...

Chapter 4 - Kasus 4.3

#Chapter 4 - Kasus 4.3 1. Program  #include <cstdlib>#include <iostream>#include <math.h>using namespace std;int main(int argc, char *argv[]){    int a,b,c,d,bersih,pokok,pajak;    int pendapatan,beban;    int laba_usaha,laba_kotor,laba_sebelum_pajak,laba_bersih;    cout<<"|====================================================|\n";    cout<<"|                                                   ...