#include <stdio.h> long fact(int); int main() { int baris, i, j; printf("Masukan banyak baris: "); scanf(&quo...
Showing posts with label Program c. Show all posts
Showing posts with label Program c. Show all posts
Tuesday, August 18, 2015
Sunday, August 16, 2015
Program: Leap Year
S^2
August 16, 2015
#include <stdio.h> int main() { int year; printf("Enter a year to check if it is a leap year\n"); scanf("%d&quo...