728x90
반응형
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int num = 1;
int count = 1;
cout.imbue(locale(""));
while (count < 21)
{
num *= 2;
cout << count << '\t' << setw(10) << num << endl;
count += 1;
}
return 0;
}
728x90
반응형
'Computer Science > Object Oriented Programming' 카테고리의 다른 글
c++(cpp)_random matrix(10X10) (0) | 2022.07.28 |
---|---|
c++(cpp)_Unit matrix(10*10) 만들기 (0) | 2022.07.28 |
c++(cpp)_거듭 제곱 반환 함수 구현 (0) | 2022.07.28 |
c++(cpp)_성적 산출 (0) | 2022.07.28 |
댓글