1039宏定义判断闰年(这里可以看出它与函数的部分差别)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define runnian(a,b)if(a%4==0&&a&100!=0||a%400==0) b=1;int main(){ i……
1039-宏定义闰年判断c++
摘要:原题链接:[https://www.dotcpp.com/oj/problem1039.html](https://www.dotcpp.com/oj/problem1039.html)
参考代……
编写题解 1039: [编程入门]宏定义之闰年判断(java代码)
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class Main {
public static void main(String[] a……
1039: [编程入门]宏定义之闰年判断(python)
摘要:####
~~~python
def islun(n):
if n%4 == 0 and n%100 != 0:
return 'L'
if n%400……