格式化数据输出 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double arr[5][3]={{960.00,129500.00,1080.…… 题解列表 2017年10月22日 0 点赞 0 评论 1241 浏览 评分:0.0
数组输出 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main(){ int a[4][5],i,j,max,max_x=1,max_y=…… 题解列表 2017年10月22日 1 点赞 0 评论 1084 浏览 评分:0.0
字符串比较 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char a[100],b[100]; int i; s…… 题解列表 2017年10月22日 0 点赞 0 评论 985 浏览 评分:0.0
复数求和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,a[100][2],b=0,c=0; scanf("%d",&n); for(int…… 题解列表 2017年10月22日 0 点赞 0 评论 1336 浏览 评分:2.0
C语言训练-亲密数 (C语言描述,反正怎么都能对) 摘要:#include <stdio.h> //反正怎么都能对 void main() { int i,o,A,B; for (i=2;i<=3000;i++) { A…… 题解列表 2017年10月22日 1 点赞 3 评论 2618 浏览 评分:8.0
图形输出 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ printf(" X | X | X\n---+---+---\n | |\n---+---+-…… 题解列表 2017年10月22日 1 点赞 0 评论 1385 浏览 评分:0.0
单词个数统计 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char a[100]; gets(a); int co…… 题解列表 2017年10月22日 8 点赞 3 评论 1151 浏览 评分:8.7
勾股数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,b,c; for(a=3;a<1000;a++){ for(b=a;b<1000;…… 题解列表 2017年10月22日 5 点赞 2 评论 940 浏览 评分:2.0
前10名 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,a[200],i,j; scanf("%d",&n); for(i=0;i<n;i+…… 题解列表 2017年10月22日 0 点赞 0 评论 1078 浏览 评分:9.9
企业奖金发放 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ double a; scanf("%lf",&a); if(a<=100000)printf("…… 题解列表 2017年10月22日 2 点赞 0 评论 2753 浏览 评分:9.9