鱼C论坛

 找回密码
 立即注册
查看: 2145|回复: 3

求助,在不使用任何方式屏蔽警告的情况下完成该题目

[复制链接]
发表于 2020-3-5 15:32:10 | 显示全部楼层 |阅读模式

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

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

x
本帖最后由 计算机学生 于 2020-3-5 15:35 编辑

cyu'y
设计一个计算器,输入文件名,打开文件并进行分析,文件有n行,n未知,如果是该行则只打印空行,如果该行为\\开头则把该行原封不动打印出来,如果该行出错则打印“ == ERROR: ”然后打印错误类型,如果格式正确则计算并打印“ == ”并在后面打印出计算结果

例子:input.txt
2+2
2*(3-1)

// hello, world
2+(1+
2+2+2+2+2+2+2+2+2+2
2+2
1+1

output.txt
2+2 == 4
2*(3-1) == 4

// hello, world
2+(1+ == ERROR: brackets
ERROR: not enough memory
2+2 == ERROR: not enough memory
1+1 == 2



下面是我的程序,现在在查看输入是否正确阶段,没有进行计算,但是出错了,而且不能以任何方式屏蔽警告


#include<stdio.h>
#include<math.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
#include<crtdbg.h>

//#pragma warning(disable:4996)//(不能使用改函数)

int main(void) {
int main(void) {
        FILE* fp;
        int inf=0,a=0,ch;
        char filename[30];
       
        filename[29] = '\0';
        scanf_s("%s", filename, sizeof(char) * 30);
       
    if ((fp=fopen(filename, "r") == NULL) ){
                        printf("Open the file failure...\n");
                        return 0;
                }
        ch = fgetc(fp);
        if (ch == EOF) {
                return 0;
        }
        //printf("//");
        while (ch != EOF) {
               
                if ((a == '\n') && (ch == '\n')) {
                        putchar(ch);
                        ch = fgetc(fp);
                        continue;
                }
                if ( (a == '/') &&(ch == '/')) {
                        inf = 1;
                }
                if (ch == '\n') {
                        if (inf != 1) {
                                printf(" == ");       
                        }
                        else {
                                inf = 0;
                        }
                }
        if (ch == '\n') {
                        if (a != '\n') {
                                if ((a == '+' || a == '-') || (a == '*' || (a == '/' && ch != '/') || a == '*')) {
                                        printf("ERROR : brackets");
                                }
                        }
                 }
                //ch = realloc(ch , sizeof(int*) * i);
                putchar(ch);
                a = ch;
                ch = fgetc(fp);
               
        }
        putchar(ch);
        fclose(fp);
        return 0;
}
-----------------------------------------------------------------------------
出错:\pragma.c(24) : warning C4047: “=”: “FILE *”与“int”的间接级别不同
1>.\pragma.c(24) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
已查阅过多方资料,进行过多次搜索都没有解决
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-3-5 15:32:44 | 显示全部楼层
c语言控制台程序
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-5 15:42:51 | 显示全部楼层
请问2+2咋错了呢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-5 16:07:04 | 显示全部楼层
不知道,老师给的例子就是这样
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-15 23:49

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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