摘要:
#include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax); int m 阅读全文
摘要:
include <stdio.h> include<stdlib.h> include<time.h> define N 5 int main() { int number; int i; srand(time(0)); for(i=0;i<N;++i){ number=rand()%65+1; p 阅读全文
摘要:
include<stdio.h> include<stdlib.h> int main() { printf(" o o \n"); printf(" \n"); printf("I I I I\n"); system("pause"); return 0; } include<stdio.h> i 阅读全文