peluncuran roket
/*
* Nama Program : peluncuran_roket.c
* Ditulis oleh : Johannes Alexander Putra
* email penulis : Johanexalex774@gmail.com
*
*/
#include <stdio.h>
int main()
{
int i = 100;
while(i>=0)
{
printf("%d\n",i);
i--;
}
printf("GO!");
return 0;
}
Komentar
Posting Komentar