C言語 演習4-16

[crayon]/*
============================================================================
Name : ensyuu4-16.c
Author :
Version :
Copyright : Your copyright notice
Description : Hello World in C, Ansi-style
============================================================================
*/

#include

int main (void)
{
int i, j, temp;
int height, width;

puts(“長方形を作りましょう。”);
printf(“一辺(その1)”); fflush(0); scanf(“%d”, &height);
printf(“一辺(その2)”); fflush(0); scanf(“%d”, &width);

if(width > height) {
temp = height;
height = width;
width = temp;
}

for( i = 0; i < width; i++) { for( j = 0; j < height; j++) { putchar('*'); } putchar('\n'); } return(0); } [/crayon] 参照:http://nekohand.web.fc2.com/meikai/neko_meikai_c_ans.html