文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>用g++在Window上编译C++程序

用g++在Window上编译C++程序

时间:2008-08-18  来源:lry

用g++在Window上编译C++程序
在window上想用linux的gcc来骗译c程序,得先装Cygwin做linux的模拟器,在装Cygwin时选上所有与

gcc,g++,c,c++相关的选项,都在devel子菜单下,安装成功后就可以在windows下以Cygwin模拟linux环境

来编译c/c++程序了。
Key steps:
1. Download setup.exe for Cygwin (405KB).
2. Install Cygwin step by step.
3. Select all items about gcc/g++/c/c++ in installation.

500)this.width=500;" border=0>


4. Compile cpp files by g++ command from Cygwin client.
下面举个我刚刚试过的程序:
cin.cpp

#include "iostream.h"
 int main()
 {
  int a;
  cout<<"请输入a"<<endl;
  cin>>a;
  cout<<"A的值是"<<a<<endl<<"从A到100的质数有"<<endl;
  int i,j;
  bool flag;
  for (i=a;i<101;i++)
   {
    flag=true;
    for (j=2;j<i/2+1;j++)
    if (i%j==0) {flag=false; break;}
    if (flag) cout<<" "<<i;
   }
 }


编译(编译时会有几个warning)

g++ -o cin cin.cpp

执行:

$ ./cin

 

请输入a 41. A的值是41 从A到100的质数有 41 43 47 53 59 61 67 71 73 79 83 89 97

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载