⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 新建 文本文档.txt

📁 编译程序的实验~~ 很详细哈..需要的下来看看!
💻 TXT
字号:
if(c!='+'&&c!='-'&&c!='*'&&c!='/'){
		if(c!='#'){
			if(k==0)
				str1.Insert(str1.GetLength(),c);
			else
				str2.Insert(str1.GetLength(),c);
			printf(str1+"\n");
		}
		else
			k=1;
	}
	else{
		if(c=='+'){
			str1.Format("%d",atoi(str1)+atoi(str2));
			str2.Empty();
		}
		if(c=='-'){
			str1.Format("%d",atoi(str1)-atoi(str2));
			str2.Empty();
		}
		if(c=='*'){
			str1.Format("%d",atoi(str1)*atoi(str2));
			str2.Empty();
		}
		if(c=='/'){
			str1.Format("%d",atoi(str1)/atoi(str2));
			str2.Empty();
		}
	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -