VC++ 怎样创建一个程序,不是在DOS中运行,就像电脑计算器那种可视界面的程序!高手帮我把下面的做一下
以下是一个给出英尺和英寸的值(整数)就可以自己换算成厘米的程序代码,我在VC++6.0中运行成功,不过是再DOS中!我想让它能像电脑软件一样,打开程序出来一个类似计算器之...
以下是一个给出英尺和英寸的值(整数)就可以自己换算成厘米的程序代码,我在VC++6.0中运行成功,不过是再DOS中!我想让它能像电脑软件一样,打开程序出来一个类似计算器之类的窗口,有两个空分别输入英尺和英寸,然后点击回车就出来厘米!大家一定懂我的意思!高手教教我怎么弄啊!我是新手!感激不尽!
#include <iostream>
using namespace std;
const double conversion=2.54;
const int inchesPerFoot=12;
int main ()
{
int feet;
int inches;
int totalInches;
double centimeters;
cout<<"Enter two integers,one for feet and"
<<"noe for inches:";
cin>>feet>>inches;
cout<<endl;
cout<<"The numbers you entered are"<<feet
<<"for feet and"<<inches
<<"for inches."<<endl;
totalInches=inchesPerFoot*feet+inches;
cout<<endl;
cout<<"the total number of inches="
<<totalInches<<endl;
centimeters=conversion*totalInches;
cout<<"The number of centimeters="
<<centimeters<<endl;
return 0;
} 展开
#include <iostream>
using namespace std;
const double conversion=2.54;
const int inchesPerFoot=12;
int main ()
{
int feet;
int inches;
int totalInches;
double centimeters;
cout<<"Enter two integers,one for feet and"
<<"noe for inches:";
cin>>feet>>inches;
cout<<endl;
cout<<"The numbers you entered are"<<feet
<<"for feet and"<<inches
<<"for inches."<<endl;
totalInches=inchesPerFoot*feet+inches;
cout<<endl;
cout<<"the total number of inches="
<<totalInches<<endl;
centimeters=conversion*totalInches;
cout<<"The number of centimeters="
<<centimeters<<endl;
return 0;
} 展开
展开全部
我懂你的意思,但是照你的水平无论如何都很有难度。VC++创建WINDOW应用程序最简单的就是用MFC,但是我当时转MFC的时候就花了整整一个星期,而且还只是会用,原理方面一头雾水。
你现在的情况,还是用VB比较现实
你现在的情况,还是用VB比较现实
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
找本书或者上网找源码都行啊~~~一看就懂(如果不想深入理解的话~)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询