17 Dec 2009

Bahasa C++

contoh program bahasa C++
teknik counter

-->
#include "conio.h"
#include "stdio.h"
void main()
{
int N,T;
N=0;
T=7;
awal:
N=N+1;
T=T-N;
if(N==3)

printf("nilai T adalah %d",T);
else
goto awal;



contoh:

-->
Buatlah program untuk mencari hasil perhitungan 1+3+5+7+9

Load disqus comments

0 comment