摘要:
/*//使用指针处理数组元素//输入10个整数,将其中最小的数与第一个数对换,把最大的数与最后一个数对换。写三个子函数并在main函数中调用:①输入10个数;②进行处理;③输出10个数。样例输入2 3 6 8 9 0 1 -1 5 7样例输出-1 3 6 8 7 0 1 2 5 9提示/说明#inc 阅读全文
2023年3月21日 #
摘要:
/*#include<iostream>using namespace std;int main(){ int n = 5, a[6] = { 1, 2, 2, 2, 2 }; a[n] = a[1] + a[2]; cout << a[n]; return 0;} #include<iostrea 阅读全文
摘要:
/*//数段素数//输入一个数段(输入两个整数,代表起始和结束的整数值),输出这个数段内的全部素数#include <iostream>using namespace std;int main(){int min, max, i, j;cin >> min >> max;for (i = min + 阅读全文
摘要:
/*// 一个数若恰好等于它的因子之和,这个数为“完数”。例如6的因子为1,2,3,而6=1+2+3,因此6是“完数” 。//求找出1000之内的前两个完数,并换行输出因子#include<iostream>using namespace std;int main(){int n, i;for (n 阅读全文
摘要:
/*/输入一个不多于5位的正整数,要求第一行求它是几位数 第二行分别输出每一位数字(有间隔) 第三行逆序输出数字321变123(无间隔)#include<iostream>using namespace std;int main(){int a;cin >> a;if (a >= 0 && a < 阅读全文
摘要:
/*//c1 c2 c3 c4 c5分别为China不输入转变为Glmre#include<iostream>using namespace std;int main(){char c1 = 'C';char c2 = 'h';char c3 = 'i';char c4 = 'n';char c5 阅读全文
摘要:
/* //输出Hellow World! #include<stdio.h> int main() { printf("Hellow World!"); return 0; } */ /* //计算矩形周长面积 { int a,,b,c,d; //printf("输入矩形长宽"); //作解释说明用 阅读全文