Skip to content

Instantly share code, notes, and snippets.

@hidayat365
Created July 13, 2012 04:33
Show Gist options
  • Select an option

  • Save hidayat365/3102738 to your computer and use it in GitHub Desktop.

Select an option

Save hidayat365/3102738 to your computer and use it in GitHub Desktop.
Problem Deret
<?php
/****
* Belum sesuai seperti yang diminta
* tapi sudah mendekati, silakan modifikasi sendiri
****/
for ($i=1; $i<=100; $i+=4) {
for ($j=0; $j<4; $j++) {
print $i+$j.' ';
print ($j%4==0 or $j%4==3) ? 'a ' : '';
}
print '<br>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment