| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 358 人关注过本帖
标题:帮忙指出错误
只看楼主 加入收藏
蛮人
Rank: 1
来 自:深圳
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-1-12
收藏
 问题点数:0 回复次数:2 
帮忙指出错误
请帮忙指出如下C++.net程序中的错误
// a4.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
using namespace std;

void main()

int _tmain(int argc, _TCHAR* argv[])
{   int digit,num;
    cout << "输入一个整数:";cin >> num;
    cout << "反向显示结果:";
    do
    {    digit=num % 10;
         num=num/10;
         cout << digit;
    } while (num!=0);
    cout << endl;
    return 0;
}
2009-10-31 15:10
ltyjyufo
Rank: 9Rank: 9Rank: 9
来 自:未来
等 级:蜘蛛侠
威 望:2
帖 子:353
专家分:1166
注 册:2009-10-25
收藏
得分:0 
#include <iostream.h>
//using namespace std;
void main(int argc,char* argv[])
{   
    int digit,num;
    cout << "输入一个整数:";
    cin >> num;
    cout << "反向显示结果:";
    do
    {    digit=num % 10;
         num=num/10;
         cout << digit;
    } while (num!=0);
    cout << endl;
}



要有点回报哦。。。。。。。。。。。。。。

[ 本帖最后由 ltyjyufo 于 2009-11-2 17:33 编辑 ]

翱翔天空的雄鹰固然令人羡慕,却容易被禁锢于牢笼之中,只有那夜色中的蝙蝠才是真正自由的飞翔者....
2009-11-02 17:31
蛮人
Rank: 1
来 自:深圳
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-1-12
收藏
得分:0 
非常感谢ltyjyufo,我调试的结果如下:
// a7.cpp : Defines the entry point for the console application.
//


#include <stdafx.h>
#include <iostream>
using namespace std;

void main(int argc,char* argv[])
{   int digit,num;
    cout << "输入一个整数:";cin >> num;
    cout << "反向显示结果:";
    do
    {    digit=num % 10;
         num=num/10;
         cout << digit;
    } while (num!=0);
    cout << endl;
2009-11-06 21:27
快速回复:帮忙指出错误
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024197 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved