题解 1036: [编程入门]带参数宏定义练习

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1036 :指针传址调用 -C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h> void swap(int*a,int*b); int main() {    int a,b = 0;    int te……

带参数宏定义练习

摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S……

带参数宏定义练习-C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define change(a,b) temp=a,a=b,b=tempint main(){int a,b,temp;scanf("……