张浩飞  
11 2016 档案
  • 160809307 张浩飞
    摘要:#include//升序排列数字(冒泡) void f1(int a[]) { int i,j,temp; for(i=0;ia[j+1]) { temp=a[j+1]; a[j+1]=a[j]; a[j]=temp; } ... 阅读全文
    posted @ 2016-11-25 00:10 张浩飞 阅读(315) 评论(1) 推荐(0)
  • 160809307 张浩飞(8)
    摘要:#include int main() { int a[10][10]; int i,j; for(i=0;i #include int main() { int a[100],i=0,m=1; a[0]=1; printf("%d ",a[0]); do { i++; a[i]=a[i-1]+1;... 阅读全文
    posted @ 2016-11-17 23:52 张浩飞 阅读(158) 评论(1) 推荐(0)
  • 160809307 张浩飞(7)
    摘要:#include int main() //你的名字 { int cnt[52]={0}; char name; printf("请输入你的英文名字(注意首字母大写)。并以.结束!\n") ; printf("你的名字:"); int i; do { scanf("%c",&name); if(name>='A' && nam... 阅读全文
    posted @ 2016-11-10 23:31 张浩飞 阅读(247) 评论(3) 推荐(0)
  • 160809307 张浩飞
    摘要:#include void zy1() { int a; printf("五级制成绩"); char score; scanf("%c",&score); switch (score) { case 'A': printf("90~100"); break; ... 阅读全文
    posted @ 2016-11-04 12:59 张浩飞 阅读(166) 评论(1) 推荐(0)