【答案】以下程序运行后的输出结果是()。 #include <stdio.h> struct S {int n; i

返回首页智慧树时间:2022-11-15 19:20
题目 / 答案提交正确答案

以下程序运行后的输出结果是()。 #include <stdio.h> struct S {int n; int a[20];}; void f(struct S *p) { int i,j,t; for(i=0;i<p->n-1;i++) for(j=i+1;j<p->n;j++) if(p->a>p->a[j]) { t=p->a; p->a=p->a[j]; p->a[j]=t; } } int main() { int i; struct S s={10,{2,3,1,6,8,7,5,4,10,9}}; f(&s); for(i=0;i<s.n;i++) printf(”%d,”,s.a); }

A.10,9,8,7,6,5,4,3,2,1,

B.1,2,3,4,5,6,7,8,9,10,

C.2,3,1,6,8,7,5,4,10,9,

D.10,9,8,7,6,1,2,3,4,5,

正确答案:B

本文链接:https://www.oyuuu.com/Ti/ZhiHuiShu/352907.html

关键字  浏览量:
上一篇:若定义如下结构,则能打印出字母M的语句是()。 struct person{ char name[9]; int age
下一篇:以下关于typedef 的叙述错误的是()。
相关问题
  • 【智慧树】有以下程序运行后的输出结果是()。 int main(){int aa[4][4]={{1,2,3,4}, {5,6,7
  • 【智慧树】以下程序运行后的输出结果是()。 int main() { int i,j; char a[ ]={‘a’,‘b’,‘c
  • 【智慧树】以下程序运行后的输出结果是________。#include"stdio.h"intf(intx);