皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
Why would he like to work for the company?
A.
He wants to earn more money
B.
He wants more responsibility.
C.
He doesnt want to work for a big company.
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【简答题】下面程序的功能是用递归算法将一个整数按逆序存放到一个字符数组中,例如 123 存放为“ 321 ”。 #include void Convert(char *a, int n) { int i; if(i=n/10) Convert( (1) ,i); *a= (2) ; } void main() { int number; char str[10]=””; scanf(“%d”,&number...
【单选题】神经损伤的病人禁忌下列哪项治疗
A.
经皮神经电刺激
B.
神经肌肉电刺激
C.
浸蜡治疗
D.
短波治疗
E.
脉冲磁疗
【单选题】#include #include int main() { char str1[30], str2[] = “your book”; scanf(“%s”, str1); strcpy(str1, str2); printf(“\n %s\n %d\n”, str1, strlen(str2)); return 0; } 输入: you are a student
A.
your book 9
B.
your book 8
C.
your book 10
D.
your book 7
【多选题】与他人在正式场合交谈时要严肃认真,还要注意语言的
A.
准确规范
B.
慢条斯理
C.
声音洪亮
D.
思路清晰
【单选题】下列定义数组的语句中正确的是______。
A.
#define size 10 char str1[size],str2[size+2];
B.
char str[];
C.
int num['10'];
D.
int n=5; int a[n][n+2];
【简答题】以下程序求最小字符串。 int main() { int i; char str[10], temp[10]; gets(temp); for (i=0; i<4; i++) { gets(str); if (strcmp(temp,str) [填空(1)] ) [填空(2)] ; } printf("%s\n",temp); return 0; }A.>0B. strcpy(temp,str)
【单选题】与他人在正式场合交谈时要严肃认真 ,还要注意语言的
A.
准确规范
B.
慢条斯理
C.
声音洪亮
【简答题】若有以下程序: include <iostream> using namespace std; int main() { char str[10]; cin>>str; cout<< str<<end1; return 0; } 当输入为: This is a program! 那么执行程序后的输出结果是【 】。
【单选题】设char str[100];int I=5;,则引用数组元素的错误形式的是( )
A.
str[I+10]
B.
*(srr+I)
C.
(str+I-1)
D.
*(&(str++)+I)
【单选题】与他人在正式场合交谈时要严肃认真,还要注意语言的:
A.
准确规范
B.
慢条斯理
C.
粗声粗气
D.
咬文嚼字
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题