📄 main.cpp
字号:
#include<iostream.h>
#include<string.h>
#include<stdio.h>
#include<fstream.h>
#include<stdlib.h>
#include<ctype.h>
#include"calculator.h"
void main()
{
FILE *fp; //保证每次都清空文件'"output.txt"
if ( ( fp = fopen ("output.txt","w")) == NULL)
{
printf("cannot open file!\n");
}
fclose(fp);
ReadFromFile("input.txt");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -