摘要:
(5) #include<stdio.h>struct friends{ /*姓名*/ char name[10]; /*电话号码*/ int phone; /*生日*/ int birthday;};struct birthday{ int year; int month; int day;}; 阅读全文
摘要:
#include<stdio.h>int main (void){ int m,n,c,d; printf("Enter m n:"); scanf("%d%d",&m,&n); printf("m<=1000 && n<=1000\n"); c=m*n; while(n!=0){ d=m%n; m 阅读全文