C언어/문제풀다 하나씩

숫자 다시 조합하기

mcdn 2020. 4. 10. 19:58
반응형

 

숫자 다시 조합하기, 쉬운 방법 없을까

 

#include <iostream>
#include <cstring>
using namespace std;

int findnum(int a, int digit) {
	//cout << digit;
	a = a % (10*digit);
	//cout << a;
	a = a / (digit);
	return a;
}


int main() {
	int a;
	cin >> a;
	int ten =	findnum(a, 10);
	//cout << ten;
	int thou = findnum(a, 1000);
	int newnum = thou * 10 + ten;
	cout << newnum + 5;



}
반응형

'C언어 > 문제풀다 하나씩' 카테고리의 다른 글

char *a = new char();  (0) 2020.04.11
정렬, 연습문제  (0) 2020.04.11
int arr[15]는 01010111 같은 붙어있는 숫자 인식 못함  (0) 2020.04.11
3X3 보드판 굴리기 노가다  (0) 2020.04.11
짝꿍 찾기 쬐끔 어려웠음  (0) 2020.04.11
head->next = new Node() 해주기  (0) 2020.04.10
head 따라 이동  (0) 2020.04.10
Node * head 만들기  (0) 2020.04.10