题目内容

It is very important to choose an appropriate gift with a personal signature.

A. 对
B. 错

查看答案
更多问题

It’s better for an employee to send a thank-you note than a gift to his/her boss.

A. 对
B. 错

It’s very important for a person to have a polite and proper attitude towards people around him.

A. 对
B. 错

用随机函数生成[10,90]上的10个整数,找出这组数中的最大值和最小值,并互换这两个数的位置。#include "stdio.h"#include 【1】main(){ int i,a[10],t,cmax,cmin;for(i=0;i<10;i++){ a[i]=【2】%81+10;printf("%5d",a[i]);}printf("\n");cmax=cmin=【3】;for(i=1;i<10;i++)if(【4】)cmax=i;else if(a[i]

一个数组有8个元素,其初始数据为:1 2 3 4 5 6 7 8不增加数组,也不增加数组的存储单元,通过移动数组元素的值将数组变化为:4 5 6 7 8 1 2 3填空完善程序,实现上述功能。#include "stdio.h"main(){ int a[]={1,2,3,4,5,6,7,8},i,j,t;for(j=1; j<=3; j++){ t= 【1】 ;for(i=1;i<8;i++)【2】=a[i];a[7]= 【3】;}for(i=0;i<8;i++)printf("%5d",a[i]);printf("\n");}

答案查题题库