read.txt
来自「编译原理课的必要练习作业」· 文本 代码 · 共 10 行
TXT
10 行
#include<stdio.h>
void main(){
int a=7,b=5,c=2;
char c;
a=b+c;
2+5=7;
c=a-b;
2=7-5;
}