题目内容 (请给出正确答案)
提问人:网友l******8 发布时间:2023年2月8日 10:30
[]

红色安全色用来标志强制执行,如“必须戴安全帽”。

A . 正确

B . 错误

参考答案
十点题库官方参考答案 (由十点题库聘请的专业题库老师提供的解答)
更多“红色安全色用来标志强制执行,如“必须戴安全帽”。”相关的问题
不参与构成肛直肠环的是()。
A.肛门外括约肌浅部
B.肛门外括约肌深部
C.肛门内括约肌
D.肛门外括约肌皮下部
E.直肠下段的纵行肌
点击查看答案
人体的结构层次与植物体的结构层次相比,最重要的区别是()。
A.人体由细胞构成
B.人体由不同组织构成器官
C.人体由器官组成系统
D.人体是一个统一的整体
点击查看答案
根据《环境影响评价技术导则——总纲》,下列关于清洁生产分析和循环经济的表述正确的是()。
A.国家已发布行业清洁生产规范性文件和相关技术指南的建设项目,应按所发布的规定内容和指标进行清洁生产水平分析,必要时提出进一步改进措施与建议B.国家未发布行业清洁生产规范性文件和相关技术指南的建设项目,结合行业及工程特点,从资源能源利用、生产工艺与设备、生产过程、污染物产生、废物处理与综合利用、环境管理要求等方面确定清洁生产指标和开展评价C.从企业、区域或行业等不同层次,进行循环经济分析,提高资源利用率和优化废物处置途径D.以上皆不对
点击查看答案
患者发生血管活性药物外渗明显时,以下处理措施哪项不正确()
A.垂体后叶素、多巴胺药物外渗者,尽快予654-2药物热敷
B.硝普钠药物外渗者,尽快予浸有1%利多卡因湿纱布外敷
C.硝酸甘油药物外渗者,局部予50%硫酸镁湿敷
D.肾上腺药物外渗者,予654-2药物热敷
E.去甲肾上腺药物外渗者,予654-2药物热敷
点击查看答案
园林植物配置与园林绿地风格、环境相吻合是指园林植物种植设计的( )原则。
A.生态设计B.功能设计C.造景设计D.空间设计
点击查看答案
女性,24岁。劳累后出现胸背痛11天,两下肢麻木,无力,小便失禁1天。体检:两下肢肌力0度,两侧下肢腱反射消失,病理征(-),胸4以下深浅感觉消失,患者留置导尿管。应首先考虑的诊断
A . A.格林-巴利综合征
B . B.多发性硬化
C . C.运动神经元疾病
D . D.急性脊髓炎
E . E.亚急性脊髓炎
点击查看答案
下列哪项为脑脊液检查的禁忌证()
A.脑膜刺激征阳性
B.疑有颅内出血
C.原因不明的昏迷、瘫痪
D.疑有中枢神经系统恶性肿瘤
E.颅内压明显增高
点击查看答案
房地产被征用后灭失的,补偿金额应包括使用上的补偿和相当于被征用房地产价值的补偿。()
A . 正确
B . 错误
点击查看答案
在不设借贷等栏的多栏式账页中,______登记减少数。
A.用负数
B.用红字
C.用蓝字
D.专设一栏
点击查看答案
我国煤矿安全法律法规体系主要由()组成。
A . 法律
B . 行政法规
C . 地方性法规
D . 部门规章和地方政府规章
点击查看答案
企业最常见的外部招聘方式是( )。
A、人才招聘会招聘
B、互联网招聘
C、中介机构招聘
D、媒体广告招聘
点击查看答案
干粉灭火剂的灭火作用是对燃烧的()作用,从而达到灭火的目的。
A、冷却
B、隔离
C、抑制
D、窒息
点击查看答案
三端稳压电源用于成本和易用性是它的优势。
A.对 B.错
点击查看答案
下列与毛泽东同志有关的是:()
A. 撰写《纪念白求恩》
B. 题词“尊重护士,爱护护士”
C. 题词“护士工作有很大的政治性” 
D. 翻译《看护者教程》
点击查看答案
字符串str由数字字符组成(长度不超过5个字符),可看作任意进制的数,请补充函数fun(),该函数的功能
字符串str由数字字符组成(长度不超过5个字符),可看作任意进制的数,请补充函数fun(),该函数的功能是:把 str字符串转换成任意进制的数,结果保存在数组xx中,由函数返回转换后数组腆的实际长度。其中x表示str原来的进制, y表示要转换成的进制。例如,输入str=“1111”,x=2,y=10,结果输出:15。如果输入str=“15”, x=10,Y=2,结果输出: 1111。注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。试题程序:include <stdio.h>include<stdlib.h>include<string.h>define N 8int xx[N];int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。试题程序:include <stdio.h>include<stdlib.h>include<string.h>define N 8int xx[N];int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。试题程序:include <stdio.h>include<stdlib.h>include<string.h>define N 8int xx[N];int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

试题程序:include <stdio.h>include<stdlib.h>include<string.h>define N 8int xx[N];int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

include <stdio.h>include<stdlib.h>include<string.h>define N 8int xx[N];int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

include<stdlib.h>include<string.h>define N 8int xx[N];int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

include<string.h>define N 8int xx[N];int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

define N 8int xx[N];int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

int xx[N];int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

int fun(char *str,int x,int y){int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

{int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

int sum;int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

int i=0;char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

char *p=str;for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

for(i=0; i<N; i++)xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

xx[i]=0;sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

sum=*p-'0';p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

p++;while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

while (*p){sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

{sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

sum=【 】;p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

p++;}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

}i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

i=0;while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

while(sum!=0){xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

{xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

xx[i]=【 】;【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

【 】;i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

i++;}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

}return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

return i;}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

}main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

main (){char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

{char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

char str[6];int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

int i;int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

int n;int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

int x;int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

int y;printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

printf("Enter a string made up of '0' to'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

'9' digits character:");gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

gets(str);if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

if(strlen (str) >5){printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

{printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

printf("Error:string too longer!,please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

please input again!\n\n");exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

exit(0);}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

}for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

for(i=0;str[i];i++)if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

if(str[i]<'0'||str[i]>'9'){printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

{printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

printf("Error:%c not is '0' to'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

'9' digits character!\n\n",str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

str[i]);exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

exit(0);}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

}printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

printf("The original string: ");puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

puts(str);printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

printf("\nINPUT x= ");scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

scanf("%d",&x);printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

printf("\nINPUT y= ");scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

scanf("%d",&y);n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

n=fun(str,x,y);printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

printf("\n%s is convered to",str);for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

for (i=n-1; i>=0; i--)printf("%d",xx[i]);}

printf("%d",xx[i]);}

}
点击查看答案
客服
TOP