001. 자신의 학번과 이름을 입력으로 받아서 화면에 출력하시오. 001. 자신의 학번과 이름을 입력으로 받아서 화면에 출력하시오 #include using namespace std; int main() { int id; //학번 char name[10]; //이름 cout > id; cout > name; cout 012.두개의 숫자 중 더 큰 숫자를 반환하는 Larger() 함수를 이용하여 세개의 숫자 중 가장 큰 수를 #include using namespace std; int Larger(int a, int b) { if (a > b) return a; else return b; } int main() { int x, y, z; cout > x >> y >> z; /*int max = Larger..
C++/Foundation
#include using namespace std; void Hanoi(int n, char from, char via, char to) { //재귀함수는 반드시 끝나느 조건이 있어야 한다 if (n == 1) { cout
#include using namespace std; int Factorial(int n) { if (n == 1) return 1; else return Factorial(n - 1) * n; } int main(){ cout > n; cout
#include using namespace std; void Pyramid(int n) { for (int i = 0;i < n;i++) { for (int j = 0;j < n - i;j++) cout
#include using namespace std; int Larger(int a, int b) { if (a > b) return a; else return b; } int main() { int x, y, z; cout > x >> y >> z; /*int max = Larger(x, y); max = Larger(max, z);*/ //한 줄 int max = Larger(Larger(x, y), z); cout