[SWEA-D1] C++ 2019. 더블더블

민지·2023년 5월 20일
0

SWEA

목록 보기
18/23
post-custom-banner

1부터 주어진 횟수까지 2를 곱한 값(들)을 출력하시오.

주어질 숫자는 30을 넘지 않는다.

#include<iostream>
#include<math.h>
using namespace std;

int main(int argc, char** argv)
{
	int ejg;
	cin >> ejg;
	
	for(int i=0; i<=ejg; i++)
	{
		cout << pow(2, i) << " " ;
	}
	return 0;
}
profile
개발일지

0개의 댓글