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

📄 legal-7

📁 用Java实现的编译器。把源代码编译成SPARC汇编程序
💻
字号:
class Program{    void test_while()    {        int i;	i = 0;        while(true)	{	    while(false)	    {	        callout("printf","should never be here\n");	    }            i = i + 1;	    callout("printf","%d",i);	    if (i > 5)	    {	        return;            }	}    }    void main()    {        test_while();	callout("printf","\n");    }}

⌨️ 快捷键说明

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