题解列表

筛选

温度转换入门小白求法

摘要: ###### #根据题目我们可以知道要求为 ---- 将温度进行转换 温度转换公式为 c=5(F-32)/9,取位2小数。 这是题目要求 输入一个华氏温度,要求输出摄氏温度。且温度要取……

密码破译代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char ch1,ch2,ch3,ch4,ch5;    scanf("%c",&ch1);    sca……

第几项(优质题解)

摘要:解题思路:这是最简单的啦!注意事项:略参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int m,n,s=0;    c……

1267: A+B Problem

摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int a,b ;    cin>>a>>b ;    cout<<a+b……

难题+思路正确=简单

摘要:解题思路:看不懂看最后的注释注意事项:参考代码#include<stdio.h>#include<string.h>int main(){    char digit[200];    while(s……

2749: Hello, World!

摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main() {     cout<<"Hello, World!";     r……

2876: 矩阵交换行

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int main(){    int n,m;  ……

2877: 同行列对角线的格子

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[100][100],n,i,j;int main(){  ……