C语言实验题目及答案
1、实验项目一 C程序的编辑、编译、连接和运行
题目:编写程序,要求屏幕上显示如下信息:
***********************
This is a C program .
***********************
程序:
#include
void main()
{
printf(“***********************\n”);
printf(“This is a C programn .\n”);
printf(“***********************\n”);
}
实验项目二数据类型、运算符、表达式
题目
(1)程序填空:输入1 个实数x,计算并输出其平方根(保留1 位小数)。
填空
1.double x,root;
2.root=sqrt(x);
(2)输入一个大写英文字母,输出相应的小写字母。
填空
1.ch=ch+32;
1、#include "stdafx.h"
#include "stdio.h"
#include "math.h"
int main(int argc, char* argv[])
{
printf("This is a Cprogram\n");
return 0;