题解列表

筛选

c语言代码解决问题

摘要:解题思路:注意事项:#include<stdio.h>#include<stdlib.h>int partion(int a[], int i, int j){    int temp = a[i];……

1849: 成绩等级转换

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

1848: 求输入数据绝对值

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

今天也是很爱老公们的一天呀!

摘要:解题思路:别人教我的注意事项:不知道参考代码:print(&#39;&#39;&#39;               ********               ************      ……

注意事项:布尔运算

摘要:解题思路:#include <stdbool.h>布尔运算即可注意事项:布尔运算参考代码:#include<stdio.h>#include <stdbool.h>int main(){    boo……

自定义函数之字符类型统计

摘要:解题思路:对照ASCII码值写好范围注意事项:参考代码:#include<stdio.h>#include<string.h>char mm(char a[]){    int x=strlen(a)……