仅将 c++ 程序中的注释转换为大写

Convert to upper case only comments from a c++ program

本文关键字:转换 注释 c++ 程序 仅将      更新时间:2023-10-16

我正在尝试读取一个文件,然后将文件中的注释转换为大写。

这是我的代码:

char s[100];
void initstring();
void error(char);
void cap(char s[]);
void main(void)
{
  initstring();
  getchar();
}
void initstring()
{
FILE *fp;
fp = fopen("example.txt","r");
while(fgets(s,100,fp)!=NULL)
{
   cap(s);
}
}
void cap(char s[])
{
    cout << "its in";
 for(int i=0;i<strlen(s);i++)
 {
    if(s[i]=='/' && s[i+1]=='/')
    {       int x=i;
        do
        {
            s[x]=toupper(s[x]);
            x++;
        }while(s[x]!='n');
        break;
    }
    else if(s[i]=='/' && s[i+1]=='*')
    {
        int y=i;
        do
        {
            s[y]=toupper(s[y]);
            y++;
        }while(s[y]!='/');
        break;
    }
 }
 cout << s;
}

它给了我警告s,

warning C4018: '<' : signed/unsigned mismatch

和 fopen 上的错误

Error   1   error C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS.

实际上,该程序最初是用 c 编写的,我现在是用 c++ 编写的。

感谢您的任何帮助。

这只是新版本 MSVC 的行为。将#define _CRT_SECURE_NO_WARNINGS添加到文件的开头以继续使用不安全的功能。

关于警告,这是因为 strlen 返回的是无符号的 int,而不是有符号的 int,所以你可以int i unsigned int i以避免警告。