上一页 1 ··· 3 4 5 6 7
摘要: printf ("%3d\n", 5); printf ("%03d\n", 5); 输出为 阅读全文
posted @ 2021-10-23 08:53 Altwilio 阅读(327) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstdio> #include<iomanip> #include<cstring> using namespace std; int main(){ int m,n; cin>>m>>n; int r=m; while(r!=0){ r=m 阅读全文
posted @ 2021-10-23 08:11 Altwilio 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 输入一个字符串,判断其是否为回文。 所谓回文字符串,是指从左到右读和从右到左读完全相同的字符串。 主要涉及知识点:字符数组的输入输出,及相应的处理。 这个问题,可以从字符串的两头开始比较,即第1个字符和倒数第1个字符比较,第2个字符和倒数第2个字符比较,以此类推...如果出现字符不相等的情况,说明不 阅读全文
posted @ 2021-10-17 20:40 Altwilio 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 1.插入排序; 1.从第一个元素开始,该元素可以认为已经被排序2.取下一个元素tem,从已排序的元素序列从后往前扫描3.如果该元素大于tem,则将该元素移到下一位4.重复步骤3,直到找到已排序元素中小于等于tem的元素5.tem插入到该元素的后面,如果已排序所有元素都大于tem,则将tem插入到下标 阅读全文
posted @ 2021-10-16 21:23 Altwilio 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 在许多应用程序中,都有交换相同类型的两个变量内容的需要。例如,在对整数数组进行排序时,将需要一个函数来交换两个变量的值,如下所示: void swap(int &a, int &b) { int temp = a; a = b; b = temp; } 在使用中直接 swap( a, b)就可以了 阅读全文
posted @ 2021-10-16 20:28 Altwilio 阅读(88) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-10-15 23:08 Altwilio 阅读(0) 评论(0) 推荐(0) 编辑
摘要: a=!a; cout<<a<<endl; 如果 a为0,则输出1;a为其他值的时候输出的都是0; 阅读全文
posted @ 2021-10-04 16:10 Altwilio 阅读(569) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int flag=1; for(int i=2;i*i<=n;i++){ if(n%i==0) flag=0; } if(flag==1) cout<<n< 阅读全文
posted @ 2021-09-28 21:12 Altwilio 阅读(26) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7