dovelet - 섭씨온도를 화씨온도로 변환/CtoF dovelet - 섭씨온도를 화씨온도로 변환/CtoF 문제 #include int main(){int input;std::cin >> input;std::cout.precision(1);std::cout algorithm 2016.07.07
dovelet - 네 수의 평균/average dovelet - 네 수의 평균/average 문제 123456789101112131415#include #include using namespace std; int main(){ int in1, in2, in3, in4; cin >> in1 >> in2 >> in3 >> in4; cout.precision(2); cout algorithm 2016.07.07
dovelet - 삼각형 넓이 구하기/triangle dovelet - 삼각형 넓이 구하기/triangle 문제 1234567891011121314#include #include using namespace std; int main(){ int x, y; std::cin >> x >> y; cout.precision(2); cout algorithm 2016.07.06
dovelet - 기본 연산/op dovelet - 기본 연산/op 문제 12345678910111213#include int main(){ int x, y; std::cin >> x >> y; std::cout algorithm 2016.07.06
dovelet - 두수의 교환/swap dovelet - 두수의 교환/swap 문제 123456789#include int main(){ int x, y; std::cin >> x >> y; std::cout algorithm 2016.07.06
dovelet - 분을 초로 변환/m2s dovelet - 분을 초로 변환/m2s 문제 12345678910#include int main(){ int minutes; std::cin >> minutes; std::cout algorithm 2016.07.06
dovelet - 사각형 넓이 구하기/area dovelet - 사각형 넓이 구하기/area 문제 123456789#include int main(){ int x, y; std::cin >> x >> y; std::cout algorithm 2016.07.06