A+B for Input-Output Practice (VII) (C语言代码) 摘要:注意事项:初始的那个代码!!格式坑死人:followed by a blank line。参考代码:#include<stdio.h>int main(){ int a,b; while(…… 题解列表 2017年10月18日 0 点赞 0 评论 1293 浏览 评分:0.0
A+B for Input-Output Practice (C语言代码) 摘要:注意事项:参考代码:#include<stdio.h>int main(){ int n,N,sum,temp; scanf("%d",&N); while(N--&&(~scanf…… 题解列表 2017年10月18日 0 点赞 0 评论 939 浏览 评分:0.0
【亲和数】 (C语言代码) 摘要:注意事项:各位智商都比我高,我就不BB了参考代码:代码1: (我已经很努力了,但还是很长O.O)#include<stdio.h>int main(){ int M,a,b,sum_a,sum_…… 题解列表 2017年10月18日 0 点赞 0 评论 1054 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:多分支语句switch() case注意事项:注意100这个,,,需要注意的在代码中已经注释出来了参考代码:#include<stdio.h>int main(){ int a; …… 题解列表 2017年10月18日 0 点赞 0 评论 1401 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,num=0; int w,i,j,k,l; scanf("%d",&a); …… 题解列表 2017年10月18日 0 点赞 0 评论 1675 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h> #include <math.h> void main() { int nums[10],i,min=65535,o; for (i=0;…… 题解列表 2017年10月18日 0 点赞 0 评论 1177 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:**************************Hello World!**************************…… 题解列表 2017年10月18日 0 点赞 0 评论 1441 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:纯粹数学问题注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d",&a); if(a<=100000) …… 题解列表 2017年10月18日 0 点赞 0 评论 2062 浏览 评分:0.0
矩阵乘方 (C语言代码) 摘要:解题思路:注意事项:矩阵的乘法参考代码:#include <stdio.h>int b, m;int a[2][2], ans[2][2], temp[2][2] = {1,1,1,1};void p…… 题解列表 2017年10月19日 1 点赞 0 评论 1750 浏览 评分:0.0