求助,在不使用任何方式屏蔽警告的情况下完成该题目
本帖最后由 计算机学生 于 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;
filename = '\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.
已查阅过多方资料,进行过多次搜索都没有解决 c语言控制台程序 请问2+2咋错了呢
不知道,老师给的例子就是这样
页:
[1]