/* ---------------------------------------* * PROGRAM LOOPING CETAK NOMOR URUT (TUGAS NO 3)* * Dibuat oleh : Eri Nur Sofa * * NIM: G.231.13.0139 * * Tanggal : 02 Juni 2014 * *----------------------------------------*/ #include <stdio.h>void main(){ int i=1,j=10; clrscr(); printf("PROGRAM LOOPING CETAK NOMOR URUT(TUGAS NO 3)\n"); printf("=======================================\n"); while (10>=i){ printf("%d \tUKDW Almameterku %d\n",i,j); ++i; --j; } printf("=======================================\n"); getch(); }
Subscribe to:
Post Comments (Atom)

Post a Comment