C程序设计语言练习 第二章】的更多相关文章

2.3 常量 strlen函数:返回s的长度 int strlenn(char s[]) { int i=0; while(s[i] != '\0') ++i; return i; } 2.7 类型转换 atoi函数:将字符串s转换为相应的整型 int atoi(char s[]) { int n = 0; for (int i = 0; s[i] >= '0' && s[i] <= '9'; i++) n = 10*n + (s[i] - '0'); return n; }…
第二章 基本程序设计 2.2 编写简单的程序 1.变量名尽量选择描述性的名字(descriptive name). 2.实数(即带小数点的数字)在计算机中使用一种浮点的方法来表示.因此,实数也称为浮点数.Java中,可以使用关键字double来声明一个浮点变量. public class ComputeArea { /** *求圆的面积 */ public static void main(String[] args) { double radius;//声明变量,圆的半径 double are…
第一章虽然感觉不像是个习题.但是我还是认真去做,去想,仅此而已! 练习 1-1 Run the "hello, world" program on your system. Experiment with leaving out parts of the program, to see what error messages you get.  #include <stdio.h> int main(int argc, char const *argv[]) { print…
#include "stdio.h" #include "stdlib.h" #define random(x) (rand()%x) void creat_array(int a[],int len,int max); void print_array(int a[],int n); void main(){ printf("please input two numbers as the array's length and the array's ma…
第二章线程的第一次接触,主要讲了如何创建线程以及需要注意的几点. 一.创建线程 与调用函数的过程类似;线程只不过用CreateThread的API将函数封装起来,并产生一个与主程序同时执行的程序来调用被封装的函数. HANDLE hThread = CreateThread (              LPSECURITY_ATTRIBUTES lpThreadAtt,              DWORD dwStackSize              LPTHREAD_START_ROU…
 The C Programming language notes 一 基础变量类型.运算符和判断循环         char                 字符型  character               --> char c = '\n' ;   [ASCII码 0-255] short int long    整数形  interger            --> int num = 120;[ unsigned 无符号表示]        float double   …
这一章习题做着很舒服,毕竟很简单.所以很有感觉. 练习 2-1 Write a program to determine the ranges of char , short , int , and long variables, both signed and unsigned , by printing appropriate values from standard headers and by direct computation. Harder if you compute them:…
#程序1: 设计:由用户键入利率.贷款数以及贷款的年限,系统计算出每月还贷数和总还款数 注意:输入的年利率是带有百分比的数字,例如:4.5%.程序需要将它除以100转换成小数.因为一年有12个月,所以将年利率除以12即是月利率,为了获得月利率,月利率=年利率/(12+100) 程序: annualInterestRate =eval(input("Enter annual interest rate,e.g., 7.25:")) #输入年度利率monthlyInterestRate=a…
#2.2_编写一个简单的程序 项目1: 设计:radius=20,求面积area? 程序: radius=20 #给变量radius复制area=radius*radius*3.14159 #编写area的表达式,给area赋值print(area) #输出area的值,area的值是1256.636print("The area for the circle of radius",radius,"is",area)#在双引号内的文字是直接被读取的,不用双引号包含住…
2.1 程序: Celsius=eval(input("Enter a degree in Celsius:"))#输入摄氏度的值Celsiusfahrenheit =(9/5)*Celsius + 32 #定义华氏温度fahrenheitprint(Celsius,"Celsius is",fahrenheit,"Fahrenheit") 结果: Enter a degree in Celsius:4343 Celsius is 109.4 F…