Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 김골라
- AWS CodePipeline
- S3
- expo
- 이미지 맵
- AWS CodeBuild
- can't getting credentials
- Error:error:0308010C:digital envelope routines::unsupported
- credential error
- aws ec2
- nodejs
- rwdImageMaps
- react
- EC2
- SASS
- AWS
- 이미지 좌표 추출
- C언어
- Unable to find the global bin directory
- 어셈블리어
- netlify variables
- 반응형 페이지 좌표 변환
- CSS
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- GeoJSON object too complex/large
- ogr2ogr
- node
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- 설치완료안됨
- NODE_VERSION
Archives
- Today
- Total
ImFe's study
객체지향프로그래밍 과제-아스키코드 표 출력(C++) 본문
#include <iomanip>
#include <iostream>
using std::cout;
using namespace std;
int main()
{
//ASCII 32번부터 126번까지 출력하는 프로그램
cout <<" "<<"ASCII코드를 32번부터 126번까지 출력하는 프로그램";
cout << "\n";
cout << "\n";
cout << "\n";
cout << "\n";
cout << "\n";
for (int i = 32; i < 42; i++)
cout <<setw(1)<< i << ":" << (char)i <<"\t";
cout << "\n";
for (int i = 42; i < 52; i++)
cout << setw(1) << i << ":" << (char)i <<"\t";
cout << "\n";
for (int i = 52; i < 62; i++)
cout << setw(1) << i << ":" << (char)i <<"\t";
cout << "\n";
for (int i = 62; i < 72; i++)
cout << setw(1) << i << ":" << (char)i <<"\t";
cout << "\n";
for (int i = 72; i < 82; i++)
cout << setw(1) << i << ":" << (char)i <<"\t";
cout << "\n";
for (int i = 82; i < 92; i++)
cout << setw(1) << i << ":" << (char)i <<"\t";
cout << "\n";
for (int i = 92; i < 102; i++)
cout << i << ":" << (char)i <<"\t";
cout << "\n";
for (int i = 102; i < 112; i++)
cout << i << ":" << (char)i <<"\t";
cout << "\n";
for (int i = 112; i < 122; i++)
cout << i << ":" << (char)i <<"\t";
cout << "\n";
for (int i = 122; i < 127; i++)
cout << i << ":" << (char)i <<"\t";
cout << "\n";
return 0;
}
동기가 알려준 setw()가 C언어의 %3d같은건줄알고 사용해봤으나 실패..
더 알아봐야겠다
'Programming > C언어 백준 풀이' 카테고리의 다른 글
[C] 10718번 - We love kriii (0) | 2020.12.07 |
---|---|
[C] 2557번 - Hello World (0) | 2020.12.07 |
객체지향 프로그래밍 과제(rep3) (0) | 2020.04.22 |
실습과제-1 배열에 관련된 프로그래밍 (0) | 2020.04.03 |
10년간의 월급 구하기, 원의 면적 계산하기 (0) | 2020.04.03 |
Comments