Contents

Views 6868 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
#include<stdio.h>

int main(){
        int cnt, sep, i, j;
        
        printf("Enter a line Number : ");
        scanf("%d", &cnt);
        sep = cnt/2;

        for(i=0; i<=sep; i++){
                for (j=0; j<sep-i; j++) printf(" ");
                for (j=0; j<2*i +1; j++) printf("*");
                printf("n");
        }
        
        for (i=0; i<sep; i++){
                for (j=0; j<=i; j++) printf(" ");
                for (j=0; j<2*(sep-i)-1; j++) printf("*");
                printf("n");
        }

        return 0;
}


?

List of Articles
No. Category Subject Author Date Views
813 Develop [c] 단기과정[01/14] 파일 입출력 file hooni 2003.04.23 6821
812 Develop [c] 웹 메모장.. ㅋㅋ file hooni 2013.04.23 6823
811 Develop [c++] 프리렉(freelec) 예제 자료.. ㅋㄷ file hooni 2013.04.23 6833
810 Develop [c] 문자열 str_shift 예제.. file hooni 2013.04.23 6837
809 Develop [js] 수명체크 프로그램 ㅋㅋ file hooni 2013.04.23 6838
808 Develop [js] get방식, url이후 모두 그대로 읽어오기.. hooni 2013.04.23 6841
807 Develop [ajax] 샘플 코드와 한글처리에 대한 간단한 설명 hooni 2013.04.23 6842
806 Develop [pdf] 윈도우즈 95 시스템 프로그래밍(Windows 95 system programming) file hooni 2013.04.23 6842
805 Develop [js] 사라지는 브라우저 hooni 2003.04.23 6857
» Develop [c] 라인수 입력받아 마름모꼴 출력하기.. hooni 2003.04.23 6868
803 Develop [c] 간단한 순위 루틴.. (정보처리기사) hooni 2003.04.23 6874
802 Develop [c] 프로세스간의 통신(파이프) hooni 2003.04.23 6891
Board Pagination Prev 1 ... 26 27 28 29 30 31 32 33 34 35 ... 98 Next
/ 98