c语言常见题及其答案,C语言-全部题目及其答案.doc

\\

C语言全部题目及答案

Exercise 1: Programming Environment and Basic Input/Output

Write a program that prints “This is my first program!” on the screen.

Save this program onto your own disk with the name of e2-1a;

Run this program without opening Turbo C;

Modify this program to print “This is my second program!”, then save it as e2-1b. Please do not overwrite the first program.

Write a program that prints the number 1 to 4 on the same line. Write the program using the following methods:

Using four “printf” statements.

Using one “printf” statement with no conversion specifier (i.e. no ‘%’).

Using one “printf” statement with four conversion specifiers

3.(a) Write a program that calculates and displays the number of minutes in 15 days.

(b) Write a program that calculates and displays how many hours 180 minutes equal to.

(c) (Optional) How about 174 minutes?

ANSWERS:

#include

int main()

{

printf("This is my first program!");

return 0;

}

#include

int main()

{

printf("This is my second program!");

return 0;

}

#include

int main()

{

printf("1");

printf("2");

printf("3");

printf("4");

return 0;

}

#include

int main()

{

printf("1234");

return 0;

}

#include

int main()

{

printf("%d%d%d%d",1,2,3,4);

return 0;

}

#include

int main()

{

float days,minutes;

days = 15;

minutes = days * 24 * 60;

printf("The number of minutes in 15 days are %f\n", minutes);

return 0;

}

#include

int main()

{

float minutes,hours;

minutes = 180;

hours = minutes / 60;

printf("180 minutes equal to %f hours\n", hours);

return 0;

}

#include

int main()

{

float minutes,hours;

minutes = 174;

hours = minutes / 60;

printf("174 minutes equal to %f hours\n", hours);

return 0;

}

Exercise 2: Data Types and Arithmetic Operations

1. You purchase a laptop computer for $889. The sales tax rate is 6 percent. Write and execute a C program that calculates and displays the total purchase price (net price + sales tax).

2.Write a program that reads in the radi

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值