练习6-1 /* 求两个整数中的最小值 */ #include <stdio.h> /*--- 返回三个整数中的最小值 ---*/ int min2(int a, int b) { int min = a; if (b < min) min = b; return min; } int main(void) { int a, b, c; puts("请输入两个整数."); printf("整数a:"); scanf("%d",
练习1-1 #include <stdio.h> int main() { int a; a = 15; int b; b = 37; int c; c = a - b; printf("%d-%d的结果是%d.", a, b, c); return 0; } 练习1-2 #include <stdio.h> int main() { printf("天\n地\n人\n"); ; } 练习1-3 #include <stdio.h>
[C++Primer]第五版[学习笔记]习题解答第三章 ps:答案是个人在学习过程中书写,可能存在错漏之处,仅作参考. 作者:cosefy Date: 2020/1/10 第三章:字符串,向量和数组 练习3.2: #include<iostream> #include<string> using std::string; using std::cout; using std::cin; using std::endl; int main() { string line; //whi