网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

C语言程序中必须有的函数是().

  • A、#include "stdio.h"
  • B、main
  • C、printf
  • D、scanf

参考答案

更多 “C语言程序中必须有的函数是().A、#include "stdio.h"B、mainC、printfD、scanf” 相关考题
考题 以下四个程序中,完全正确的是( )。A.includeB.include main(); main() {/*pr 以下四个程序中,完全正确的是( )。A.#include<stdio.h>B.#include<stdio.h> main(); main() {/*programming*/ {/*/programming/*/ printf("programming!\n");} printf("programming!\n");}C.#include<stdio.h>D.include<stdio.h> main() main() {/*/*programming*/*/ {/*programming*/ printf("programming!\n");} printf("programming!\n");}

考题 下列给定的程序中,函数fun()的功能是:求输入的两个数中较小的数。例如:输入5 10,结果为min is 5。[注意] 部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun的横线上填入所编写的若干表达式或语句。[试题源程序]include <stdio.h>include <conio.h>int fun(int x, (1) ;int z;z=x<y (2) x:y;return(z);}main()int a, b, c;scanf("%d, %d\n", (3) );c=fun(a, b);printf("min is%d:, c);}

考题 国家二级(C语言)机试模拟试卷104 下列给定的程序中,函数fun()的功能是:求输入的两个数中较小的数。例如:输入5 10,结果为rain is 5。[注意] 部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun的横线上填入所编写的若干表达式或语句。[试题源程序]#include<stdio.h>#include<conio.h>int fun(int x,(1)){int z;z=x<y(2)x:y;return(z);}main(){int a, b, c;scanf(%d, %d\n,(3));c=fun(a, b);printf(min is %d, c);}

考题 请补充main函数,该函数的功能是:从键盘输入一个长整数,如果这个数是负数,则取它的绝对值,并显示出来。例如,输入:-3847652,结果为:3847652。注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。试题程序:include<stdio.h>include<conio.h>main(){long int n;clrscr();printf("Enter the data;\n");scanf(【 】);printf("*** the absolute value ***\n");if(n<0)【 】printf("\n\n");printf(【 】);}

考题 在每个C语言程序中都必须包含有这样一个函数,该函数的函数名为()。 A、mainB、MAINC、nameD、function

考题 下列给定程序中,函数fun()的功能是:实现两个整数的交换。例如给a和b分别输入60和65,输出为:a=65 b=60请改正程序中的错误,使它能得出正确的结果。注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。试题程序;include<stdio.h>include <conio.h>/*************found**************/void fun(int a,b){ int t;/*************found**************/t=b;b=a;a=t;}main(){ int a,b;clrscr();printf("Enter a, b: "); scanf("%d%d",a,b);fun(a, b);printf("a=%d b=%d\n ", a,b);}

考题 下列给定程序中函数fun()的功能是:计算n!。例如,给 n输入5,则输出120.000000。请改正程序中的错误,使它能得出正确的结果。注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。试题程序:include <stdio.h>include <conio.h>double fun (int n){ double result=l.0;/*************found**************/if n==0return 1.0;while (n>ln<170)/*************found**************/result *=n--return result;}main ( ){ int n;printf ("Input N: ");scanf ( "%d" n);printf ("\n\n%d!=%lf\n\n",n, fun(n));}

考题 编写函数fun(),函数的功能是:根据以下公式计算s,计算结果作为函数值返回;n通过形参传入。S=1+1/(1+2)+1/(1+2+3)+…+1/(1+2+3+…+n)例如:若n的值为11时,函数的值为1.833333。注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。试题程序:include <conio.h>include <stdio.h>include <string.h>float fun(int n){}main(){int n;float s;clrscr();printf("\nPlease enter N: ");scanf("%d",n);s=fun(n);printf("The result is:%f\n " , s);}

考题 以下程序段给数组所有的元素输入数据,请选择正确答案填入。include main(){int a[10],j 以下程序段给数组所有的元素输入数据,请选择正确答案填入。#include <stdio.h>main(){ int a[10],j=0; while(i<10)scanf("%d", ______ ); : :}A.a+(i++)B.a[i+1]C.a+ iD.a[++i]

考题 若执行下列程序时从键盘上输入2,则输出结果是()。 inclUde main() {int a; scanf("%d", 若执行下列程序时从键盘上输入2,则输出结果是( )。#inclUde<stdio.h>main(){int a;scanf("%d",A);if(a++<3)printf("%d\n",A);else printf("%d\n",a--);}A.1B.3C.2D.4

考题 在每个c++ 程序中必须包含这样一个函数,该函数的函数名为______ 。A.mainB.MAINC.nameD.function

考题 请编写函数fun(),它的功能是计算:s=(1-In(1)-In(2)-In(3)-…-1n(m))2s作为函数值返回。在C语言中可调用log(n)函数求In(n)。log函数的引用说明是double log(double x)。例如,若m的值为15,则fun()函数值为723.570801。注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。试题程序:include <conio.h>include <stdio.h>include <math.h>double fun(int m){}main(){clrscr();printf("%f\n",fun(15));}

考题 以下程序:includemain(){char str[10];scanf("%s",str);printf("%s\n",str);}运 以下程序: #include<stdio.h> main() {char str[10]; scanf("%s",str); printf("%s\n",str); } 运行上面的程序,输入字符串how are you,则程序的执行结果是( )。A.howB.how are youC.hD.howareyou

考题 在每个c++程序中都必须包含这样一个函数,该函数的函数名为______ 。A.mainB.MAINC.nameD.function

考题 以下四个程序中,完全正确的是______。A.include main(); {/*programming* 以下四个程序中,完全正确的是______。A.#include <stdio.h> main(); {/*programming*/ printf("programming!\n");}B.#inc lude<stdio.h> main() {/*/programming/*/ printf("programming!\n");}C.#include <stdio.h> main() {/*programming*/ printf("programming!\n");}D.include<stdio.h> main() {/*/*programming*/*/ printf("programming!\n");}

考题 执行下列程序时输入12345678,程序的运行结果是______。 include main() { int x,y; sca 执行下列程序时输入12345678,程序的运行结果是______。 #include<stdio.h> main() { int x,y; scanf("%2d%2d"); printf("%d\n",x+y); }A.17B.46C.15D.9

考题 以下程序调用scanf函数给变量a输入数值的方法是错误的,其错误原因是()。includemain(){ 以下程序调用scanf函数给变量a输入数值的方法是错误的,其错误原因是( )。 #include <stdio.h> main() { int *p,*q,a,b; p=a; printf("input a:"); scanf("%d",*p); }A.*p表示的是指针变量p的地址B.*p表示的是变量a的值,而不是变量a的地址C.*p表示的是指针变量p的值D.*p只能用来说明p是一个指针变量

考题 在源程序的开始处加上“include”进行文件引用的原因,以下叙述正确的是( )。 Astdio.h文件中包含标准输入输出函数的函数说明,通过引用此文件以便能正确使用prinff、scanf等函数B将stdio.h中标准输入输出函数链接到编译生成的可执行文件中,以便能正确运行C将stdio.h中标准输入输出函数的源程序插入到引用处,以便进行编译链接D将stdio.h中标准输入输出函数的二进制代码插入到引用处,以便进行编译链接

考题 下列程序运行时输入1234567,则输出结果是______。includemain(){ int a=1,b;scanf(" 下列程序运行时输入1234567<CR>,则输出结果是______。include<stdio.h>main(){ int a=1,b;scanf("%2d%2d",a,b);printf("%d %d\n", a,b);}

考题 执行以下程序时输入1234567,则输出结果是【 】。 includemain(){int a=1,b; scanf("%2 执行以下程序时输入1234567<CR>,则输出结果是【 】。include <stdio.h>main(){ int a=1,b;scanf("%2d%2d",a,b); prinff("%d %dhn",a,b);}

考题 在每个C++程序中都必须包含有这样一个函数,该函数的函数名为()。A、 mainB、 MAINC、 nameD、 function

考题 以下说法中,正确的是()。A、C语言程序总是从第一个函数开始执行B、C语言程序总是从main()函数开始执行C、在C语言程序中,要调用的函数必须在main()函数中定义D、C语言程序中的main()函数必须放在程序的开始部分

考题 使用scanf函数时,在源程序开头()。A、书写#include"stdio.h"B、书写#includeC、不必写#includeD、书写#include"scanf.h"

考题 如果在用户的程序中要使用C库函数中的数学函数时,应在该源文件中使用的include命令是()A、#include〈string.h〉B、#include〈math.h〉C、#include〈stdio.h〉D、#include〈ctype.h〉

考题 C语言程序要正确地运行,必须要有()A、printf函数B、scanf函数C、自定义的函数D、main函数

考题 下列语句或命令中,不符合C语言程序书写规则的是()A、int a ;B、a=6;C、 int a、b;D、#include “stdio.h”

考题 单选题在源程序的开始处加上“#include”进行文件引用的原因,以下叙述正确的是(  )。A stdio.h文件中包含标准输入输出函数的函数说明,通过引用此文件以便能正确使用prinff、scanf等函数B 将stdio.h中标准输入输出函数链接到编译生成的可执行文件中,以便能正确运行C 将stdio.h中标准输入输出函数的源程序插入到引用处,以便进行编译链接D 将stdio.h中标准输入输出函数的二进制代码插入到引用处,以便进行编译链接