Perulangan dengan C++
http://www.mesran.net/
#include"conio.h"
#include"stdio.h"
main()
{
int j,totalj=0;
clrscr();
for(j=0;j<=5;j++){
totalj+=j;
}
printf("\nHasil:%d",totalj);
}
#include"conio.h"
#include"stdio.h"
main()
{
int j,totalj=0;
clrscr();
for(j=0;j<=5;j++){
totalj+=j;
}
printf("\nHasil:%d",totalj);
}
Komentar
Posting Komentar