题解列表

筛选

字符菱形的c语言解法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char a;    scanf("%c",&a);    printf( "  %c  \n %c%c%……

简单的令人发指

摘要:#include<stdio.h> #include<ctype.h> int main(void) {     char a[100];     gets(a);     int spa……

太简单了啊

摘要:#include<stdio.h> int main(void) {     int h = 100;     int n;     float sum = 0;     scanf("%……

编写题解 2831: 画矩形

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=2e5……