It’s better for an employee to send a thank-you note than a gift to his/her boss.
查看答案
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");}
将两个字符串连接为一个字符串,不许使用库函数strcat。#include "stdio.h"#include "string.h"main( ){char s1[80],s2[40];int i,j;gets(s1);gets(s2);j= 【1】;for (i=0; 【2】;i++)【3】 = s2[i];s1[i+j]= 【4】 ;puts(s1);}