C語言實驗——for循環打印圖形(循環結構)

#include <stdio.h>int main(){    int n, i ,temp;    n=4;    for(i=1;i<=n;i++)    {        for(temp = i; temp < n; temp++)        {            printf(" ");        }        for(temp = i; temp > 0; temp-
相關文章
相關標籤/搜索