"SWEA 2019 더블더블"의 두 판 사이의 차이

 
(사용자 3명의 중간 판 8개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;SWEA 2019 더블더블
{{SWEA|난이도=1}}
* [[pow()]] 함수를 써도 되는데...
* 2를 반복해서 곱하면서 출력한다.
* 여기서는 간단하게 2를 반복해서 곱하는 방식으로 하였다.
* 다른 방법으로는 [[pow()]] 함수 사용을 생각해볼 수 있다.
 
{{SWEA 헤더}}
{{SWEA 난이도 1-2}}
|}


==C++==
==C++==
<source lang='cpp'>
<syntaxhighlight lang='cpp'>
#include <iostream>
#include <iostream>
using namespace std;
using namespace std;
21번째 줄: 17번째 줄:
     }
     }
}
}
</source>
</syntaxhighlight>


==Java==
==Java==
<source lang='java'>
<syntaxhighlight lang='java'>
import java.util.Scanner;
import java.util.Scanner;
class Solution {
class Solution {
35번째 줄: 31번째 줄:
     }
     }
}
}
</source>
</syntaxhighlight>
 
==Python==
<syntaxhighlight lang='python'>
#kcy
a = int(input())
for i in range(0, a+1):
    print(2**i,end=' ')
</syntaxhighlight>

2023년 8월 25일 (금) 01:42 기준 최신판

1 개요[ | ]

SWEA 2019 더블더블

2 C++[ | ]

#include <iostream>
using namespace std;
int main() {
    int n;
    cin >> n;
    int t = 1;
    for(int i=0; i<=n ;i++) {
        cout << t << " ";
        t *= 2;
    }
}

3 Java[ | ]

import java.util.Scanner;
class Solution {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for(int i=0; i<=n; i++) {
            System.out.format("%d ", (int)Math.pow(2, i) );  
        }
    }
}

4 Python[ | ]

#kcy
a = int(input())
for i in range(0, a+1):
    print(2**i,end=' ')
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}