摘要:
需求: 按照课堂上所讲要求定义一个长方形类,并定义其求周长和面积的方法,然后定义一个测试类进行测试。 package com.company; public class Test { public static void main(String[] args) { int length; int w 阅读全文
摘要:
#include <stdio.h> int main() { int max(int arr[],int n); int arr[9]={7,4,8,6,3,2,9,11,5}; printf("%d\n",max(arr,9)); return 0; } int max(int arr[],in 阅读全文