c/기초
정올 178 : 함수2-형성평가4
phantom0219
2019. 3. 29. 14:19
My Solution
1 2 3 4 5 6 7 8 9 |
#include<stdio.h> #include<math.h> int main(void){ int n1,res; scanf("%d",&n1); res=pow(2,n1); printf("%d",res); return 0; } |
반응형