题解列表
1000:简单的a+b
摘要:参考代码:#include<iostream>
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)cout……
一个数组位操作实现转置
摘要:#include<stdio.h>
static x = 0;
int main()
{
int arr[3][3];
int i = 0, j = 0;
for ……
字符串p型编码+遍历思想
摘要:解题思路:利用遍历的思想,将一位数与后面的数进行比较,当遇到不同的数时,停止记数,并进行输出,在跳过累加的数,进行下一个数的记数。注意事项:参考代码:#include<stdio.h>#include……
编写题解 1206: 字符串问题
摘要:##编写题解 1206: 字符串问题
```cpp
#include
using namespace std;
int main()
{
string s;
cin>>s;
fo……
<函数>分段函数求值(C语言)
摘要:#include<stdio.h>
int Fun(int x)
{
int y = 0;
if (x < 1)
{
y = x;
}
else if (x >= 1 &……
找第一个只出现一次的字符(代码简短)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,count[26]={0}; char str[100000]; gets(str); f……
向量点积计算(建立结构体)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct xy{ int a; int b;}spot[1000];int main(){ int n,sum=0; scanf("……
交换 a b 的值(不增加新的变量)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d", &a, &b); a=a^b; b=a^b……