在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
using System.Runtime.InteropServices; namespace Alpha { class Beta { [DllImport("msvcrt.dll")] static extern int scanf(string format, __arglist); [DllImport("msvcrt.dll")] static extern int printf(string format, __arglist); static void Main() { int a = 0; int b = 0; unsafe { scanf("%d%d", __arglist(&a, &b)); } printf("%d + %d = %d\n", __arglist(a, b, a + b)); } } }
|
请发表评论