单项选择题
在学生管理的关系数据库中,存取一个学生信息的数据单位是
A.文件
B.数据库
C.字段
D.记录
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
以下程序运行后,当输入“14 63”时,输出结果是______。 #include<stdio.h> main() { int m, n; scanf( %d %d , &m, &n); while(m!=n) { while(m>n) m=m-n; while(m<n) n=n-m; } printf( %d n , m); }
点击查看答案&解析
填空题
以下程序运行后输入“abcdef”,则输出结果是______。 #include<stdio.h> #include<string.h> void fun(char *str) { char temp; int n, i; n=strlen(str); temp=str[n-1]; for(i=n-1; i>0; i--) str[i]=str[i-1]; str[0]=temp; } main() { char s[50]; scanf( %s , s); fun(s); printf( %s n , s); }
点击查看答案&解析
相关试题
以下程序的功能是:删除字符串中所有的空格...
以下程序运行后的输出结果是______。...
以下程序的功能是:将值为3位正整数的变量...
以下程序的功能是:借助指针变量找出数组元...
以下程序运行后输入“abcdef”,则输出结果...