题解列表

筛选

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h> typedef struct num{     int real;     int imag;  ……

1113: C语言考试练习题_保留字母

摘要:##题目1113: C语言考试练习题_保留字母 **解题思路:输入一个字符串,一个个判断是否为字母,如果符合条件就输出** ```cpp #include using namespace st……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct student{    int id;    int score;  ……

多组输入的循环方式解决

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

1005:[编程入门]温度转换

摘要:解题思路:输入华氏温度,输出摄氏温度。注意事项:1,取两位小数的写法。2,原公式乘号省略。3,注意题目中要求的输出形式。参考代码:#include<stdio.h>int main(){    flo……

简单调用函数解决问题

摘要:参考代码:# include <stdio.h># include <string.h>           //使用strlen()计算数组长度需添加此头文件void abc(char str[])……

绝对值排序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<string.h>void sort(int a[100],int len){ int……