| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 358 人关注过本帖
标题:帮忙指出错误
取消只看楼主 加入收藏
蛮人
Rank: 1
来 自:深圳
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-1-12
收藏
 问题点数:0 回复次数:1 
帮忙指出错误
请帮忙指出如下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
蛮人
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.028644 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved