a34b56c7777d8专题

数字与字母乱序输入a34b56c7777d8,数字在前字母在后输出345677778abcd

// JIEFA_2.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <stdio.h>#include <stdlib.h>#include <iostream>using namespace std;void swap(char *a,char *b){char *temp;*temp=*a;*a=*b;*b=*temp;}v