210104 | 백준 2588, 2884, 4344, 10430, 14681 | C++
방학동안 백준 사이트에서 문제 > 단계별로 풀기 순서대로 매일 풀어보기로 마음먹었다. 쉬운문제부터 시작해서 부담없이 시작하면 꽤 큰 성과를 거둘거 같다!
2588
#include <iostream>
using namespace std;
int main() {
int first, second;
cin >> first;
cin >> second;
cout << first * (second % 10) << endl;
cout << first * ((second / 10) % 10) << endl;
cout << first * (second / 100) << endl;
cout << first * second << endl;
}
2884
#include <iostream>
using namespace std;
int main() {
int hour, minute;
cin >> hour >> minute;
int rhour, rminute;
rminute = minute - 45;
if (rminute < 0) {
rminute = 60 + rminute;
rhour = hour - 1;
if (rhour < 0) {
rhour = 23;
}
}
else {
rhour = hour;
}
cout << rhour << " " << rminute;
}
4344
첫번째 접근
#include <iostream>
using namespace std;
int main() {
int first, second;
cin >> first;
cin >> second;
cout << first * (second % 10) << endl;
cout << first * ((second / 10) % 10) << endl;
cout << first * (second / 100) << endl;
cout << first * second << endl;
}
#include <iostream>
using namespace std;
int main() {
int hour, minute;
cin >> hour >> minute;
int rhour, rminute;
rminute = minute - 45;
if (rminute < 0) {
rminute = 60 + rminute;
rhour = hour - 1;
if (rhour < 0) {
rhour = 23;
}
}
else {
rhour = hour;
}
cout << rhour << " " << rminute;
}
4344
첫번째 접근
한번에 모든 케이스와 점수들을 입력하여 한번에 출력을 해야하는 것인줄 알고 for문을 두번사용하고 벡터를 추가로 만들어 접근하였다. 그렇게 하니 너무 복잡하고 뜻대로 되지 않아 한줄씩 입력하여 출력받도록 구현하니 맞출 수 있었다.
#include <iostream>
#include <vector>
using namespace std;
int main() {
int c;
vector<int> number;
int sum = 0;
cin >> c;
vector<float> average(c);
float rate;
vector<int> score;
for (int i = 0; i < c; i++) {
number.resize(i);
cin >> number[i];
score.resize(number[i]);
sum = 0;
for (int j = 0; j < number[i]; j++) {
cin >> score[j];
sum += score[j];
cout << sum << endl;
}
average[i] = sum / float(number[i]);
cout << average[i] << endl;
}
int count;
for (int k = 0; k < c; k++) {
cout << " fkf" << endl;
count = 0;
for (int n = 0; n < sizeof(score[k]); n++) {
if (average[k] < score[n]) {
count++;
}
}
rate = float(count / number[k]);
cout << round(rate * 1000) / 1000 << endl;
}
}
최종
#include <iostream>
#include <vector>
using namespace std;
int main() {
int c,number;
int sum;
cin >> c;
double average, rate;
for (int i = 0; i < c; i++) {
sum = 0;
cin >> number;
vector<int> score(number);
for (int j = 0; j < number; j++) {
cin >> score[j];
sum += score[j];
}
average = sum / number;
int count = 0;
for (int k = 0; k < number; k++)
if (average < score[k])
count++;
rate = (float)count/number * 100;
cout.precision(3);
cout << fixed << rate << "%" << endl;
}
}
cout.precision(3)
소수점 3자리 수까지
cout << fixed
소수점 자릿수 고정
10430
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << (a + b) % c << endl;
cout << ((a % c) + (b % c)) % c << endl;
cout << (a * b) % c << endl;
cout << ((a % c) * (b % c)) % c << endl;
}
14681
#include <iostream>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
if (x > 0 && y > 0) {
cout << 1;
}
else if (x < 0 && y > 0) {
cout << 2;
}
else if (x < 0 && y < 0) {
cout << 3;
}
else {
cout << 4;
}
}
Author And Source
이 문제에 관하여(210104 | 백준 2588, 2884, 4344, 10430, 14681 | C++), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@nayeon_p00/210104-백준-2588-2884-4344-10430-14681-C
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << (a + b) % c << endl;
cout << ((a % c) + (b % c)) % c << endl;
cout << (a * b) % c << endl;
cout << ((a % c) * (b % c)) % c << endl;
}
#include <iostream>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
if (x > 0 && y > 0) {
cout << 1;
}
else if (x < 0 && y > 0) {
cout << 2;
}
else if (x < 0 && y < 0) {
cout << 3;
}
else {
cout << 4;
}
}
Author And Source
이 문제에 관하여(210104 | 백준 2588, 2884, 4344, 10430, 14681 | C++), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@nayeon_p00/210104-백준-2588-2884-4344-10430-14681-C저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)