#include<stdio.h> int main(void) { int j=0,i=1; while(i<=5) { while(j<=5) { j++; printf("*"); } i++; printf("\n"); } return 0; }
木柘
相关分类