프로그래밍/알고리즘18 정수 N개의 합 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #include #include using namespace std; long long sum(vector &a) { long long sum = 0; //for (vector::iterator itr = a.begin(); itr != a.end(); itr++) { // sum += *itr; //} for (int i=0; ics 2019. 10. 11. c++ 백분율,퍼센트 계산 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 #include int main() { // 전체값에서 일부값은 몇 퍼센트? ////// 공식은 "일부값 나누기 전체값 곱하기 100"/////// // 10은 100에서 몇 퍼센트? printf("%.2f%%\n", 10.0 / 100.0 * 100.0); // 출력 결과: 10.00% // 33은 100에서 몇 퍼센트? float x = 33; float y = 100; printf("%.2f%%\n", x / y * 100... 2019. 9. 3. 백준 4344 평균은 넘겠지 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 31 32 33 34 35 36 37 38 39 #include int main() { int loop = 0; int loopMax = 0; scanf("%d", &loopMax); while (loopMax>loop) { int studentNum = 0; scanf("%d", &studentNum); float* scoreList = new float[studentNum]; float inputScore = 0.0f; float sum = 0.0f; float average = 0.0f; int count = 0; float result = 0.0f; fo.. 2019. 9. 3. 백준 8958 OX퀴즈 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 #include #include int main() { int size = 0;; scanf("%d", &size); for (int i = 0; i cs 2019. 9. 3. 이전 1 2 3 4 5 다음