About me

 1 #include <stdio.h>                                            
 2 int main(void)   3 {   4    printf("hello my friends!");   5  Aboutme();   6     return 0;  7 }   8 void Aboutme()   9 {  10   printf("称呼:阿Q\n");  11   printf("性别:男\n");  12   printf("职业:学生\n"); 13   printf("邮箱:[email protected]\n");  14   printf("兴趣:C、C++、PHP、ASP.NET 、Python、Computer network\n");  15 }   

你可能感兴趣的:(About me)