标签:return ret efi include stdio.h ons c语言程序 col amp
3 2
1
1 #include <stdio.h> 2 #define Divide(a, b) res = a % b; 3 int main(int argc, char const *argv[]) 4 { 5 int a, b, res; 6 scanf("%d%d", &a, &b); 7 8 Divide(a, b); 9 10 printf("%d\n", res); 11 return 0; 12 }
标签:return ret efi include stdio.h ons c语言程序 col amp
原文地址:http://www.cnblogs.com/hello-lijj/p/7866462.html