注册 登录
编程论坛 C++ Builder

求助为什么这个编程不能运行?

wtt88 发布于 2011-01-24 11:02, 913 次点击
#include<iostream.h>

int main()
{
    using namespace std

    int carrots;   //declare an integer variable

    carrots=25;    //assing a value to the variable
    cout<<"I have";
    cout<<carrots;  //display the value of the variable
    cout<<"carrots.";
    cout<<endl;
    carrots=carrots-1; //modify the   
    cout<<"Crunch,crunch.Now I have"<<carrots<<"carrots."<<endl;
    getch();
    return 0;
}
3 回复
#2
beyondziming2011-01-29 09:06
getch没加头文件吧 conio.h
#3
祖少华2011-01-30 14:57
真晕,一点不懂……
#4
华文2011-09-09 17:49
回复 楼主 wtt88
我想把自己调试的结果给你,但是貌似我不能把截图给你。。呵呵.........我是新手,还请指教。
1