鱼C论坛

 找回密码
 立即注册
查看: 1641|回复: 2

为什么这个代码在cfree就是对的 在vs2010就是错的?? 这个里面有什么错误

[复制链接]
发表于 2015-2-12 21:43:48 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<iostream>
#include<string>
#include<cctype>


void fill(std::string & one);


int main()
{
        using namespace std;
        string one;
        cout << "enter a string (q to quit):\t";
        fill(one);
        cout << one;
        while (one[0] != 'q')
        {
                fill(one);
                cout << one;
                cout << "enter another string (q to quit) :\t";
        }
        return 0 ;
}

void fill(std::string & one)
{

  std::getline(std::cin, one);
  int n;
  n = sizeof (one);
  int i;
  char ch;
  for(i = 0; i < n; i++)
         {
                 ch = one[i];
          one[i] = toupper(ch);
  }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-2-12 22:11:20 | 显示全部楼层
本帖最后由 freeparty 于 2015-2-12 22:13 编辑

iostream加个.h试一试
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2015-2-12 22:14:20 | 显示全部楼层
头文件是要加.h的,iostream是个例外。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 15:39

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表