创建场景
创建新的场景后: 文件 -> 生成设置 -> Build中的场景 -> 将项目中需要使用的场景拖进去 SceneTest
public class SceneTest : MonoBehaviour
{// Start is called before the first frame updatevoid Start(){// 两个类: 场景类、场…
//法一(正常方法)
int main()
{int a 3;int b 5;int tmp 0;//临时变量printf("before:a%d b%d\n", a, b);tmp a;a b;b tmp;printf("after:a%d b%d\n", a, b);return 0;
}
//法二(加减法) 有缺陷 aab超出…