题目信息

题目类型
练习
题目年份
2024
题目题型
填空题
关 键 词
程序

题目题干

下面程序的功能是在a数组中查找与x值相同的元素所在位置,请填空。
  1. #include <stdio.h> 
  2.  void main() 
  3.  { int a[10],i,x; 
  4.  printf(“input 10 integers:”); 
  5.  for(i=0;i<10;i++) 
  6.  scanf(“%d”,&a[i]); 
  7.  printf(“input the number you want to find x:”); 
  8.  scanf(“%d”, ___); 
  9.  for(i=0;i<10;i++) 
  10.  if( ___
  11.  break
  12.  if( ___ ) 
  13.  printf(“the pos of x is:%d\n”,i); 
  14.  else printf(“can not find x!\n”); 
  15.  } 

答案解析

相关题目

提示声明

  • 免责声明:本站资源均来自网络或者用户投稿,仅供用于学习和交流:如有侵权联系删除!
  • 温馨提示:本文属于积分文章,需要充值获得积分或升级VIP会员,也可在会员中心投稿获取。

猜你喜欢