A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; while(scanf("%d %d",&n,&m)!=EOF) { printf("%d\…… 题解列表 2019年04月25日 0 点赞 0 评论 447 浏览 评分: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 评论 519 浏览 评分:0.0
震宇大神的杀毒软件 (C语言代码)新手题解,简单易懂,(冒泡) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[100],t; while((scanf("%d",&n))!=EOF) { for(int …… 题解列表 2019年04月25日 0 点赞 0 评论 530 浏览 评分: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 评论 495 浏览 评分: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 评论 358 浏览 评分:0.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 评论 422 浏览 评分: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 评论 600 浏览 评分:0.0
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 评论 476 浏览 评分:0.0
C二级辅导-同因查找 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a,b,c; a=b=c=0; for(i=10;i<=1000;i++) { if( (i%2=…… 题解列表 2019年04月26日 0 点赞 0 评论 417 浏览 评分:0.0
[编程入门]结构体之时间设计 (C语言代码) 摘要:解题思路:利用数组来保存月份的天数注意事项:闰年的定义:if(n%4==0 && n%100!=0 ||n%400==0)参考代码:#include<stdio.h>int main(){ int i…… 题解列表 2019年04月26日 0 点赞 0 评论 570 浏览 评分:0.0