namespaceConsoleApp1{internalclassProgram{staticvoidMain(string[] args){Console.WriteLine("请输入一个数");int x=Convert.ToInt32(Console.ReadLine());Console.WriteLine("请输入运算类型");char z=Convert.ToChar(Console.ReadLine());Console.WriteLine("请输入另一个数字");int y=Convert.ToInt32(Console.ReadLine());switch(z){case'+':Console.WriteLine("计算结果{0}",x+y);break;case'-':Console.WriteLine("计算结果是{0},x-y");break;case'*':Console.WriteLine("计算结果是{0}", x * y);break;default:Console.WriteLine("不认识计算类型");break;}}}}
循环语句
while 循环
namespaceConsoleApp1{internalclassProgram{staticvoidMain(string[] args){int a =10;//定义一个局部变量while(a>0){Console.WriteLine("第{0}个 hello world",a);a = a -1;}}}}
汇编程序调用 C 程序详情
在 C 程序和 ARM 汇编程序之间相互调用时必须遵守 ATPCS 规则,其是基于 ARM 指令集和 THUMB 指令集过程调用的规范,规定了调用函数如何传递参数,被调用函数如何获取参数,以何种方式传递函数返回值。 寄存…