Saturday, May 29, 2010

Pengulangan While (C)

#include 
#include 

int main (){
    
    int bil=1, total=0;
    
    while(bil<=10)
    {
                  total+=bil;
                  printf("\n%10d%10d",bil,total);
                  bil++;              
    }
    
    getche();
    return 0;    
}

No comments: