KASUS 4.1

Mencetak bilangan 1-4
1. menggunakan C++


#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 i;
    cout<<"Mencetak Nilai 1-4"<<endl;
    for (i=1;i<=4;i++)
    cout<<i<<endl;
    return 0;
}

 2. menggunakan Raptor



Share this

Related Posts

Previous
Next Post »