Selasa, 22 Maret 2016

Tugas Kasus-Kasus Materi Perulangan(Looping)

Assalamu'alaikum wr.wb

SOURCE CODE:

#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
    int n, z;
    cout<<"MENCETAK NILAI 1-4"<<endl;
    n=4;
    z=1;
    while(!(z>n))
    {
        cout<<"Nilai = "<<z<<endl;
        z=z+1;
    }
    return 0;
}

DEV C++:

OUTPUT:

RAPTOR:






  
SOURCE CODE:
#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 g;
    g=0;
    cout<<"Menghitung Bilangan Ganjil dari 1-10 "<<endl;
    while(!(g>=10)){
        if(g%2==0){
          
        }
        else{
            cout<<g<<endl;
        }
        g=g+1;
    }
    return 0;
}

DEV C++:
 OUTPUT:
RAPTOR:



SOURCE CODE:
#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, n, jumlah=0 , b;
    float rata;
    cout<<"\t\tProgram Mencari Rata-rata dari n bilangan positif"<<endl<<endl;
    cout<<"Masukan Banyaknya Data : "; cin>>n;
    for (a=1;a<=n;a++){
    cout<<"Data ke "<<a<<" : "; cin>>b;
    jumlah +=b;
}
rata=(float)jumlah/n;
cout<<"Rata-rata = "<<rata;
    return 0;
}

DEV C++:

OUTPUT:

RAPTOR:




SOURCE CODE:
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
main() {
    int n=1, jumlah=0, x;
    float rata;
    cout<<"Data Ke-1 : "; cin>>x;
    while(x>0)
    {
        jumlah+=x;
        cout<<"Data ke- : "<<n+1;
        cin>>x;
        n++;
    }
    rata=(float)jumlah/(n-1);
    cout<<"Rata-rata ="<<rata;
    return 0;
}

DEV C++:


OUTPUT:

RAPTOR:



SORCE CODE:
#include <iostream>
using namespace std;
main()
{
    int x,y,i;
    int pangkat=1;
    cout<<"menghitung hasil perpangkatan\n";
    cout<<"Tulis sebuah bilangan : ";cin>>x;
    cout<<"Sebuah bilangan untuk dijadikan pangkat : ";cin>>y;
    for(i=1;i<=y;i++)
    pangkat*=x;
    cout<<x<<" pangkat "<<y<<" = "<<pangkat;
    return 0;
}

DEV C++:


OUTPUT:


RAPTOR:



SOURCE CODE:
#include <iostream>
#include <math.h>
using namespace std;
main()
{
    int a,b,jumlah=0;
    cout<<"Program menghitung perkalian dengan cara penjumlahan \n";
    cout<<"Masukkan nilai a : ";cin>>a;
    cout<<"Masukkan nilai b : ";cin>>b;
    for(int i=1;i<=abs(b);i++)
    jumlah +=a;
    if(b<0)jumlah=-jumlah;
    cout<<a<<" x "<<b<<" = "<<jumlah;
    return 0;
}

DEV C++:
OUTPUT:
RAPTOR:


Wassalamu'alaikum wr.wb

Tidak ada komentar:

Posting Komentar