C二级辅导-温度转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,f; float c; scanf("%d",&f); c=(5/9.0)*(f-32); prin…… 题解列表 2019年04月26日 0 点赞 0 评论 593 浏览 评分:0.0
A+B for Input-Output Practice (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){ int n,i,j,x,y,sum=0; scanf("%d",&n); for(i=0;i<n…… 题解列表 2019年04月26日 1 点赞 0 评论 697 浏览 评分:0.0
C语言训练-委派任务* (C语言代码)直接打印题目给的标准输出!! 摘要:解题思路:。。。。直接输出!!注意事项:无参考代码:#include<stdio.h>int main(){ printf("A,B,C,F,"); return 0;}…… 题解列表 2019年04月26日 0 点赞 0 评论 738 浏览 评分:2.0
C语言训练-立方和不等式 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,s=0,k=0; scanf("%d",&n); for(i=1;i<=n;i++) { s=…… 题解列表 2019年04月26日 0 点赞 0 评论 553 浏览 评分:0.0
C语言训练-百钱百鸡问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,i; for(x=0;x<=19;x++) { for(y=0;y<=33;y++) { …… 题解列表 2019年04月26日 0 点赞 0 评论 442 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:j解题思路:for循环注意事项:参考代码:#include<stdio.h>#define N 10int main(){ int a[N]; int i,j,sum=0,k; float s; fo…… 题解列表 2019年04月26日 0 点赞 0 评论 596 浏览 评分:0.0
黑色星期五 (公式法)(C++代码) 摘要:解题思路:套用公式注意事项:weekday需要加一参考代码:#include<iostream>#include<string>using namespace std;int whatday(int …… 题解列表 2019年04月26日 1 点赞 0 评论 3232 浏览 评分:9.5
蓝桥杯2013年第四届真题-核桃的数量 (C语言代码)理论上,要求最小公倍数,但是我要暴力破解 摘要:解题思路:很简单,看代码注意事项:无参考代码:#include<stdio.h>int main (){ int a,b,c; int i; scanf("%d%d%d",&a,&…… 题解列表 2019年04月26日 1 点赞 3 评论 1414 浏览 评分:9.0
震宇大神的杀毒软件 (C语言代码)新手题解,简单易懂,(冒泡) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[100],t; while((scanf("%d",&n))!=EOF) { for(int …… 题解列表 2019年04月25日 0 点赞 0 评论 674 浏览 评分:0.0
C语言考试练习题_保留字母 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n,m; char a[80]; gets(a); for(i=…… 题解列表 2019年04月25日 0 点赞 0 评论 669 浏览 评分:0.0