用vc6.0制作人民币大小写转换器 在线

软件排行榜
  人民币金额大写转换器输入数字即可转换成对应的人民币大写金额,并且可以转换成两种方式, 只需一键点击,即可复制。是财务办工人员必备的小工具。通过本工具可以实现人民币小写金额转换成大写金额,符合银行财务格式,使用简单,绿色轻巧!占用内存极少!
相关软件推荐
  1.重构人民币大小写转换算法.
  2.根据反馈,优化部分代码.
  3.修复1.0版本Bug.
  迷失大写金额转换器可自动处理全角半角的金额分隔符、小数点和空格;可处理12位整数、2位小数的金额!不用再担心平常在发票或者开单时候的小写金额转大写金额突然发现大写金额不会写啦。
  1.输入小写金额,敲击Enter键,直接进行转换!
  2.&转换后自动复制到剪贴板&,勾选,无需在手工复制!直接粘贴!
  3.保存数据功能,会在本目录建立一个RmbConvertData的文件,方便查阅转换记录!
  上海联通:
  很好用!
  广州电信:
  赞一个!
  很实用方便的一款软件,支持。
天极大视野
京公网安备84号当下软件园 / 汇聚当下最新最酷的软件下载站!
热门搜索:
您的位置:
> 人民币金额大小写转换器 V1.6 绿色版
人民币金额大小写转换器 V1.6 绿色版 / 人民币大小写转换器
网友评分:3.6分
  & 人民币金额大小写转换器是一款可以实现任意位数的金额转换的人民币转换器。&&& 人民币金额大小写转换器适用于各种环境,最大特点是可以实现任意位数的金额转换。符合财务格式;使用极其简单,只一个函数;支持任意位长度数值;可以帮助您进行金额大小写转换的工具。
软件特别说明
DR.EYE译典通采用超强核心技术,且具备丰富的资料库,和非凡的英语辅助学习功能。只需0.2秒取词时间即可实现英、日、中三语互译,词语变化、短语、辨析、例句
qsv转换工具是一款非常好用的奇艺Qsv视频格式转换器。qsv这个文件格式是奇艺影音特有视频格式文件,利用奇艺qsv转换工具可以将qsv格式转换成flv格式,支持批量转换,使用非常方便!
金山快译采用已有17 年历史、历经 10 次升级的全新AI人工智能翻译引擎,支持更多的档案格式,包括PDF、TXT、Word、Outlook、Excel、HTML网页、RTF和RC格式文件。
金山词霸 150余本词典辞书,70 余个专业领域,28 种常备资料,中、日、英网际大海,提供在线及时更新,第一时间掌握流行词汇表达。
Word恢复文本转换器是一个修复损坏的word文档的修复工具。
其他版本下载
人民币大小写转换器|人民币金额大小写转换器 V1.6 绿色版
Copyright (C)
www.downxia.com.All rights reserved.如何用vc++6.0制作简单的计算器_百度知道
如何用vc++6.0制作简单的计算器
新建MFC工程&jisuanqiDlg&基本对话框,添加以下控件:(1)文本框:用来显示计算结果;默认ID为IDC_EDIT1,新建关联变量m_num.(2)21个按钮:0-9、小数点、加、减、乘、除、=、删除、清空、开方、自然对数ln、常用对数log10;详细代码如下:/ jisuanqiDlg.cpp : implementation file//#include &stdafx.h&#include &jisuanqi.h&#include &jisuanqiDlg.h&#include &math.h&#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CAboutDlg dialog used for App Aboutclass CAboutDlg : public CDialog{public:CAboutDlg();// Dialog Data//{{AFX_DATA(CAboutDlg)enum { IDD = IDD_ABOUTBOX };//}}AFX_DATA// ClassWizard generated virtual function overrides//{{AFX_VIRTUAL(CAboutDlg)protected:virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support//}}AFX_VIRTUAL// Implementationprotected://{{AFX_MSG(CAboutDlg)//}}AFX_MSGDECLARE_MESSAGE_MAP()};CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD){//{{AFX_DATA_INIT(CAboutDlg)//}}AFX_DATA_INIT}void CAboutDlg::DoDataExchange(CDataExchange* pDX){CDialog::DoDataExchange(pDX);//{{AFX_DATA_MAP(CAboutDlg)//}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)//{{AFX_MSG_MAP(CAboutDlg)// No message handlers//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CJisuanqiDlg dialogCJisuanqiDlg::CJisuanqiDlg(CWnd* pParent ): CDialog(CJisuanqiDlg::IDD, pParent){//{{AFX_DATA_INIT(CJisuanqiDlg)m_num = 0.0;//}}AFX_DATA_INIT// Note that LoadIcon does not require a subsequent DestroyIcon in Win32m_hIcon = AfxGetApp()-&LoadIcon(IDR_MAINFRAME);}void CJisuanqiDlg::DoDataExchange(CDataExchange* pDX){CDialog::DoDataExchange(pDX);//{{AFX_DATA_MAP(CJisuanqiDlg)DDX_Text(pDX, IDC_EDIT1, m_num);//}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(CJisuanqiDlg, CDialog)//{{AFX_MSG_MAP(CJisuanqiDlg)ON_WM_SYSCOMMAND()ON_WM_PAINT()ON_WM_QUERYDRAGICON()ON_BN_CLICKED(IDC_BUTTON1, OnButton1)ON_BN_CLICKED(IDC_BUTTON2, OnButton2)ON_BN_CLICKED(IDC_BUTTON3, OnButton3)ON_BN_CLICKED(IDC_BUTTON4, OnButton4)ON_BN_CLICKED(IDC_BUTTON5, OnButton5)ON_BN_CLICKED(IDC_BUTTON6, OnButton6)ON_BN_CLICKED(IDC_BUTTON7, OnButton7)ON_BN_CLICKED(IDC_BUTTON8, OnButton8)ON_BN_CLICKED(IDC_BUTTON9, OnButton9)ON_BN_CLICKED(IDC_BUTTON14, OnButton0)ON_BN_CLICKED(IDC_BUTTON15, OnButtonPoint)ON_BN_CLICKED(IDC_BUTTON16, OnButtonEqual)ON_BN_CLICKED(IDC_BUTTON13, OnButtonChu)ON_BN_CLICKED(IDC_BUTTON12, OnButtonMul)ON_BN_CLICKED(IDC_BUTTON11, OnButtonSub)ON_BN_CLICKED(IDC_BUTTON10, OnButtonAdd)ON_BN_CLICKED(IDC_BUTTON17, OnButtondelet)ON_BN_CLICKED(IDC_BUTTON18, OnButtonclear)ON_BN_CLICKED(IDC_BUTTON19, OnButtonkaifang)ON_BN_CLICKED(IDC_BUTTON20, OnButtonziranduishu)ON_BN_CLICKED(IDC_BUTTON21, OnButtonchangyongduishu)//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CJisuanqiDlg message handlersBOOL CJisuanqiDlg::OnInitDialog()//初始化变量{CDialog::OnInitDialog();// Add &About...& menu item to system menu.// IDM_ABOUTBOX must be in the system command range.ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);ASSERT(IDM_ABOUTBOX & 0xF000);CMenu* pSysMenu = GetSystemMenu(FALSE);if (pSysMenu != NULL){CString strAboutMstrAboutMenu.LoadString(IDS_ABOUTBOX);if (!strAboutMenu.IsEmpty()){pSysMenu-&AppendMenu(MF_SEPARATOR);pSysMenu-&AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);}}// Set the icon for this dialog. The framework does this automatically// when the application's main window is not a dialogSetIcon(m_hIcon, TRUE); // Set big iconSetIcon(m_hIcon, FALSE); // Set small icon// TODO: Add extra initialization heret=j=i=10;p=0;q=0;m_num=0;m_lnum=0;return TRUE; // return TRUE unless you set the focus to a control}void CJisuanqiDlg::OnSysCommand(UINT nID, LPARAM lParam){if ((nID & 0xFFF0) == IDM_ABOUTBOX){CAboutDlg dlgAdlgAbout.DoModal();}else{CDialog::OnSysCommand(nID, lParam);}}// If you add a minimize button to your dialog, you will need the code below// to draw the icon. For MFC applications using the document/view model,// this is automatically done for you by the framework.void CJisuanqiDlg::OnPaint(){if (IsIconic()){CPaintDC dc(this); // device context for paintingSendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);// Center icon in client rectangleint cxIcon = GetSystemMetrics(SM_CXICON);int cyIcon = GetSystemMetrics(SM_CYICON);CRGetClientRect(&rect);int x = (rect.Width() - cxIcon + 1) / 2;int y = (rect.Height() - cyIcon + 1) / 2;// Draw the icondc.DrawIcon(x, y, m_hIcon);}else{CDialog::OnPaint();}}// The system calls this to obtain the cursor to display while the user drags// the minimized window.HCURSOR CJisuanqiDlg::OnQueryDragIcon(){return (HCURSOR) m_hI}void CJisuanqiDlg::OnButton1(){// TODO: Add your control notification handler code hereif(t){m_num=m_num*10+1;UpdateData(FALSE);}else{m_num=m_num+1.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButton2(){// TODO: Add your control notification handler code hereif(t){m_num=m_num*10+2;UpdateData(FALSE);}else{m_num=m_num+2.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButton3(){// TODO: Add your control notification handler code hereif(t){m_num=m_num*10+3;UpdateData(FALSE);}else{m_num=m_num+3.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButton4(){// TODO: Add your control notification handler code hereif(t){m_num=m_num*10+4;UpdateData(FALSE);}else{m_num=m_num+4.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButton5(){// TODO: Add your control notification handler code hereif(t){m_num=m_num*10+5;UpdateData(FALSE);}else{m_num=m_num+5.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButton6(){// TODO: Add your control notification handler code hereif(t){m_num=m_num*10+6;UpdateData(FALSE);}else{m_num=m_num+6.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButton7(){// TODO: Add your control notification handler code hereif(t){m_num=m_num*10+7;UpdateData(FALSE);}else{m_num=m_num+7.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButton8(){// TODO: Add your control notification handler code hereif(t){m_num=m_num*10+8;UpdateData(FALSE);}else{m_num=m_num+8.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButton9(){// TODO: Add your control notification handler code hereif(t){m_num=m_num*10+9;UpdateData(FALSE);}else{m_num=m_num+9.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButton0(){// TODO: Add your control notification handler code here//UpdateData();if(t){m_num=m_num*10+0;UpdateData(FALSE);}else{m_num=m_num+0.0/i;i*=10;UpdateData(FALSE);}}void CJisuanqiDlg::OnButtonPoint(){// TODO: Add your control notification handler code hereint i=10;t=}void CJisuanqiDlg::OnButtonEqual(){// TODO: Add your control notification handler code hereswitch(r){case '+':{ m_num=m_num+m_ UpdateData(FALSE);}case '-':{m_num=m_snum-m_UpdateData(FALSE);}case '*':{m_num=m_mnum*m_UpdateData(FALSE);}case '/':{if(m_num==0){MessageBox(&除数不能是0!&);}else{m_num=m_cnum/m_UpdateData(FALSE);}}}t=}void CJisuanqiDlg::OnButtonMul(){// TODO: Add your control notification handler code herer='*';t=m_mnum=m_m_num=0;UpdateData(FALSE);}void CJisuanqiDlg::OnButtonChu(){// TODO: Add your control notification handler code herer='/';t=i=10;m_cnum=m_m_num=0;UpdateData(FALSE);}void CJisuanqiDlg::OnButtonSub(){// TODO: Add your control notification handler code herer='-';i=10;t=if(j){m_snum=m_}else{ p=0;adda[p]=m_p++; for(q=0;q&=p;q++){m_lnum=m_lnum+adda[q];q++;}m_num=m_UpdateData(FALSE);m_num=0;m_snum=m_}m_num=0;}void CJisuanqiDlg::OnButtonAdd(){// TODO: Add your control notification handler code herer='+';t=j=i=10;p=0;adda[p]=m_p++;for(q=0;q&=p;q++){m_lnum=m_lnum+adda[q];q++;}m_num=m_UpdateData(FALSE);m_num=0;}void CJisuanqiDlg::OnButtondelet(){// TODO: Add your control notification handler code herep=m_num/10;m_num=p;UpdateData(FALSE);}void CJisuanqiDlg::OnButtonclear(){// TODO: Add your control notification handler code heret=i=10;j=m_num=0;m_lnum=0;UpdateData(FALSE);}void CJisuanqiDlg::OnButtonkaifang(){// TODO: Add your control notification handler code herem_num=sqrt(m_num);UpdateData(FALSE);}void CJisuanqiDlg::OnButtonziranduishu(){// TODO: Add your control notification handler code herem_num=log(m_num);UpdateData(FALSE);}void CJisuanqiDlg::OnButtonchangyongduishu(){// TODO: Add your control notification handler code herem_num=log10(m_num);UpdateData(FALSE);}
中国IT职业教育领先品牌
主营:专注UI,HTML5,PHP,JavaEE,Python,VR/AR,大数据开发培训。
empty(operator)) while(priority(expression[position])&= priority(operator-&data)&& ; } operand=pop(operand,&evaluate); : case '-'; stack=stack-&next: case '&#47,operand1,operand2)); } else *value=-1; operand=pop(operand,&operand1),two_result(-'':return(operand2/
free(top)!newnode) { printf(&+' return NULL; } newnode-& link push(link stack: case '/ printf(& operand=pop(operand,&operand2): return 1; case '-'; } int empty(link stack) { if(stack==NULL) return 1;next= stack= operand=pop(operand,&operand2);'; &,expression,evaluate); getch(); operand=push( } else operand=push(operand,expression[position]-48); } while(; } operator=push(operator,two_result( position++; operand=push(operand!!;&&expression[position]!='&#92:return(operand2+operand1): return 1; operator=pop(operator,&op); case '*',expression[position]): return 0;) { if(is_operator(expression[position])) { if(; case '&#47: case '*'!& *value=top-&gt,int operand2) { switch(operator) { case '+';n&#39#include &0' if(stack !=NULL) { top=The expression [%s] result is '%d' } } int two_result(int operator,int operand1;' : return 2;
} } void main() { char expression[50]; int position=0; int op=0; int operand1=0; int operand2=0; int evaluate=0; printf(&&#92:return(operand2-operand1);
} } int priority(char operator) { switch(operator) { case 'operand1); else return 0; } int is_operator(char operator) { switch (operator) { case '+'!empty(operator)) { operand=pop(operand,&operand1);data= newnode-&); case '*'!empty(operator)) { operator=pop(operator,&op),int value) { \nMemory allocation failure.h& struct s_node {
struct s_node * newnode=(link) malloc(sizeof(s_list)); if(; }; typedef struct s_node s_ typedef s_list * link operator=NULL; link operand=NULL,operand1,operand2)); } link pop(link stack,int *value) { : case ' default:return 0;nPlease input the inorder expression:&); gets(expression); while(expression[position]!='&#92:return(operand2*operand1)
本回答被提问者和网友采纳
为您推荐:
其他类似问题
计算器的相关知识
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。本地高速下载器地址
常用软件推荐
原创软件推荐
人民币大小写转换可以实现人民币小写金额转换成大写金额,符合银行财务格式,使用简单,绿色轻巧!占用内存极少!人民币大小写转换功能:1.输入小写金额,敲击Enter键,直接进行转换!2.&转换后自动复制到剪贴板&,勾选,无需在手工复制!直接粘贴!3.保存数据功能,会在本目录建立一个RmbConvertData的文件,方便查阅转换记录!人民币大小写转换 v1.2更新内容:修正软件边框的问题
使用金额大小写转换软件可以将人民币小写金额转换成大写金额,例如:888元可以转换成捌佰捌拾捌元整,这类软件在财务、会计上都会非常有用。
海鸥人民币金额大小写转换,这是一款Windows操作...
人民币大写转换器是很方便的人民币大小写转换工具。
易人民币大写转换器是财务办公人员必备的小工具。
人民币大小写转换可以实现人民币小写金额转换成大...
高速下载器地址
适合机型:三星G9200,三星G9200刷机包
Android版本:7.0
ROM大小:1790 MB
本站提供的软件会测试再上传,但无法保证所有软件都没有问题,如果您发现链接错误或其它问题,请在评论里告诉我们!
下载点支持点击下载(IE图标)或(迅雷图标),若直接点击下载速度太慢,请尝试点击其他的下载点,若文件太大请使用高速下载器。为确保下载的文件能正常使用,请使用最新版本解压本站软件。
建议大家谨慎对待所下载的文件,大家在安装的时候务必留意每一步!关于或的有关提示,请自行注意选择操作。
本站所有资源均是软件作者、开发商投稿、网上搜集,任何涉及商业盈利目的均不得使用,否则产生的一切后果将由您自己承担!将不对任何资源负法律责任。所有资源请在下载后24小时内删除。
本站下载资源全部由软件作者或软件厂商提供,游戏相关下载转自各大游戏论坛及游戏下载站,并全部为免费分享。如侵犯了您的版权,请立刻联系我们并附带版权证明,本站将尽快处理删除(举报联系QQ:3909136),或。
若您下载的资源有问题或无法下载,请与本站客服人员联系(QQ:9190104)。

我要回帖

更多关于 人民币大小写转换器 的文章

 

随机推荐