题解列表

筛选

实数的打印 c语言

摘要:解题思路:这个和打印hello world 我用的一个思路,目的达到了,答案可能不妥注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f"……

大小写字符转换(大写变小写,其他照样输出)

摘要:解题思路:用一个自定义函数,让大写转小写。注意事项:这个我在编译器上运行一致,结果上传判断我说  答案错误,不知道为什么的我选择在这里留坑。参考代码:void p(char a[])//传地址{ in……

结论:x*y-x-y

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int x,y;scanf("%d %d",&x,&y);printf("%d",x*y-x-y); return……

成绩评定

摘要:解题思路:#include<stdio.h>int main(){ int score; scanf("%d",&score); if(score>=90) { printf("A\n"); } e……

弟弟的作业

摘要:#include<stdio.h> int main() {     int a,b,c,k,count=0;     char op;  //操作符     while (~(k=scan……

简洁 !!!

摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main (){         int t;        int y=0,u=1,m=1;         scanf(……