Skip to content

Instantly share code, notes, and snippets.

@nazt
Created July 15, 2009 05:11
Show Gist options
  • Select an option

  • Save nazt/147467 to your computer and use it in GitHub Desktop.

Select an option

Save nazt/147467 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <math.h>
//5-2
int main()
{
int x;
int y;
int i;
int j;
scanf("%d%d",&x,&y);
for(i=1;i<=y;i++)
{
for(j=1;j<=x;j++)
printf("@");
printf("\n");
}
printf("%10.2f",pow(2.5,3));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment