본문내용
/*Modify the "Add two digits" program to add the least significant three digits
(Hundreds, tens, and ones)*/
#include
using namespace std ;
// 일의자리, 십의자리, 백의자리 구하는 함수 정의, 값을 더하는 함수 정의
int add(int num);
int first(int);
int second(int);
int third(int);
(Hundreds, tens, and ones)*/
#include
using namespace std ;
// 일의자리, 십의자리, 백의자리 구하는 함수 정의, 값을 더하는 함수 정의
int add(int num);
int first(int);
int second(int);
int third(int);
소개글