일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Java
- rinux
- 참조타입
- Oracle
- jsp
- NCS
- w3school
- javaee
- 원형그래프
- 이것이 자바다
- 자바
- 라우터
- php
- 리눅스
- 네트워크
- Cisco
- sql
- autoset
- 네트워크관리사
- cisco packet
- 오라클
- ciscopacket
- jsp연결
- VLAN
- html
- 정보처리기사
- 버추얼머신
- 정처기필기
- ospf
- 데이터베이스
- Today
- Total
기록해! 정리해!
Rinux(예제 1) 본문
6/03
예제1) 1에서 5까지 출력해보시오
#include <stdio.h>
#include <stdlib.h>
void main(){
for(int i =1; i<=5; i++){
printf(" %d ", i);
printf("\n");
}
}
또는
#include
#include
void main(){
for(int i=1; i<=5; i++){
printf(" %d/n", i);
}
}
결과값:
1
2
3
4
5
#include
#include
void main(){
for(int i=1;i<=5;i++){
printf("%d ", i);
}
}
결과값:
1 2 3 4 5
예제2) 5까지 출력하고 누적합도 출력하시오
#include <stdio.h>
#include <stdlib.h>
void main(){
int s = 0;
for(int i=1; i<=5; i++){
printf("%d", i);
s += i;
printf("\n");
}
printf("\n ===== /n");
printf("누적합: %d", s);
}
예제3) 7단만 세로로 출력하시오
#include <stdio.h>
#include <stdlib.h>
void main(){
int dan = 7;
for(int i=1; i<=9; i++){
printf("7X%d=%d\n", i, 7*i);
}
}
'Rinux' 카테고리의 다른 글
Rinux (5) -아파치 데몬 핸들링 (0) | 2022.06.07 |
---|---|
Rinux (4) (0) | 2022.06.03 |
Rinux(3) -C언어 실습 (0) | 2022.06.03 |
Rinux(2) (0) | 2022.06.03 |
Rinux (1) (0) | 2022.05.31 |