Skip to content

Instantly share code, notes, and snippets.

@Code-Hex
Created December 17, 2014 03:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Code-Hex/23cbb87dfde38a85125d to your computer and use it in GitHub Desktop.
Save Code-Hex/23cbb87dfde38a85125d to your computer and use it in GitHub Desktop.
4-2(4-1はやらない)
#include <stdio.h>
int main(){
for (int i = 1; i <= 7; ++i)
{
printf("*");
if (i % 3 == 1)
for (int i = 0; i < 4; ++i) printf("*");
printf("\n");
}
return 0;
}
@walkingmask
Copy link

素直にぷりんとえふ使おうよぉ〜…

@Code-Hex
Copy link
Author

おっぱい

@walkingmask
Copy link

メリーおっぱい

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment