[单选题]为增强职工的锻炼意识,某单位举行了踢毽子比赛,比赛时长为1分钟,参加比赛的职工平均每人踢了76个。已知每人至少踢了70个,并且其中有一人踢了88个,如

[复制链接]
查看: 235|回复: 0

23万

主题

23万

帖子

32万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
329470
发表于 2022-9-29 22:39:34 | 显示全部楼层 |阅读模式
问题:
[单选题]为增强职工的锻炼意识,某单位举行了踢毽子比赛,比赛时长为1分钟,参加比赛的职工平均每人踢了76个。已知每人至少踢了70个,并且其中有一人踢了88个,如果不把该职工计算在内,那么平均每人踢了74个。则踢得最快的职工最多踢了多少个?()
A.88
B.90
C.92
D.94


更多“[单选题]为增强职工的锻炼意识,某单位举行了踢毽子比赛,比赛时长为1分钟,参加比赛的职工平均每人踢了76个。已知每人至少踢了70个,并且其中有一人踢了88个,如果不把该职工计算在内,那么平均每人踢了74个。则踢得最快的职工最多踢了多少个?()”相关的问题

第1题
有以下程序: include<iostream> using namespace std; constxntN=5; int fun(char*s,char a,int
</p>有以下程序:
include <iostream>
using namespace std;
const xnt N=5;
int fun(char *s,char a,int n)
{
int j;
*s=a;j=n;
while(a<s[j])
j--;
return j;
}
int main()
{
char s[N+1];
int k;

第2题
有以下程序: #include<stdio.h> #include!(string.h> void fun(char*w,int m) { char

有以下程序: #include<stdio.h> #include!(string.h> void fun(char*w,int m) { char S,*pl,*p2; p1=w;p2=w+m-; while(pl<p2){s=*pl; *p1=*p2; *p2=s;pl++;p2-;} } main() { char a[]="l23456"; fun(a,strlen(a));puts(a); } 程序运行后的输出结果是()。
A.654321
B.116611
C.161616
D.l23456

第3题
有以下程序 #include<stdio.h> int fun(char s[]) {int n=0; while(*s<=9&&*s>=0){n

有以下程序 #include<stdio.h> int fun(char s[]) {int n=0; while(*s<=9&&*s>=0){n=10*n+*s-o;s++;) return(n); } main {char s[10]={6,1,*,4,*,9,*, 0,*); printf("%d",fun(s)); } 程序运行的结果是()。
A.9
B.61490
C.61
D.5

第4题
有以下程序#include<stdio.h>#include<string.h>void fun(char *w,int m){char s,*p

有以下程序
#include<stdio.h>
#include<string.h>
void fun(char *w,int m)
{ char s,*p1,*p2;
p1=w;p2=w+m-1;
while(p1<p2){s=*p1;*p1=*p2;*p2=s;p1++;p2--;}
}
main()
{ char a[]="123456";
fun(a,strlen(a));puts(a);
}
程序运行后的输出结果是
A.654321
B.116611
C.161616
D.123456

第5题
有以下程序#include<stdio.h>int fun(char s[]){int n=0;while(*s<='9'&&*s&gt

有以下程序
#include<stdio.h>
int fun(char s[])
{int n=0;
while(*s<='9'&&*s>='0'){n=10*n+*s-'o';s++;)
return(n);
}
main
{char s[10]={'6','1','*','4','*','9','*',' 0','*');
printf("%d",fun(s));
}
程序运行的结果是()。
A.9
B.61490
C.61
D.5

第6题
以下程序运行后的输出结果是【 】。 include <stdio, h> include <stating, h> void fun(char

以下程序运行后的输出结果是【 】。 include <stdio, h> include <stating, h> void fun(char * s,int p,int k) { int i; for(i=p;i<k-1;i++) s =s[i+2]; } main() { char s [] = "abedefg"; fun(s,3 ,strlen(s) ); puts(s); }

第7题
有以下程序:#include<stdio.h>#include"string.h"void fun(char*s[],int n){char*t;int i,j;for(

有以下程序: #include<stdio.h> #include"string.h" void fun(char*s[],int n) { char*t;int i,j; for(i=0;i<n-1;i++) for(j=i+1;j<n;j++) if(strlen(s)>strlen(s[j])){t=s;s=s[j];s[j]=t;} } main() { char*ss[]={"bee","bbcc","xy","aaaacc","aabcc"}; fun(ss,5);printf("%s,%s\n",ss[0],ss[4]); } 程序的运行结果是()。
A.xy,aaaacc
B.aaaacc,xy
C.bcc,aabcc
D.aabcc,bcc

第8题
有以下程序:#include<stdio.h>#include<string.h>void fun(char*s[],int n){char*t;int i,j;for(

有以下程序: #include<stdio.h> #include<string.h> void fun(char*s[],int n) { char*t;int i,j; for(i=0;i<n-1;i++) for(j=i+1;j<n;j++) if(strlen(s)>strlen(s[j])){t=s;s=s[j];s[j]=t;} } main() { Char*ss[]={"bcc","bbcc","xy","aaaacc","aabcc"}; fun(ss,5);printf("%s,%s\n",ss[0],ss[4]); } 程序的运行结果是()。
A.xy,aaaacc
B.aaaacc,xy
C.bcc,aabcc
D.aabcc,bcc

第9题
有以下程序:#include<stdio.h>int fun(char s[]){ intn=0;while(*s<='9'&&*s>='0'){n=10

有以下程序: #include <stdio.h> int fun(char s[]) { int n=0; while(*s<='9'&&*s>='0') {n=10*n+*s-'0';s++;} return(n); } main() { char s[10]={'6','1','*','4','*','9','*','0','*'}; printf("%d\n",fun(s)); } 程序的运行结果是()。
A.9
B.61490
C.61
D.5

天涯海角也要找到Ni:[单选题]为增强职工的锻炼意识,某单位举行了踢毽子比赛,比赛时长为1分钟,参加比赛的职工平均每人踢了76个。已知每人至少踢了70个,并且其中有一人踢了88个,如

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

精彩课程推荐
|网站地图|网站地图