【亲和数】 (C语言代码) 摘要:注意事项:各位智商都比我高,我就不BB了参考代码:代码1: (我已经很努力了,但还是很长O.O)#include<stdio.h>int main(){ int M,a,b,sum_a,sum_…… 题解列表 2017年10月18日 0 点赞 0 评论 812 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:多分支语句switch() case注意事项:注意100这个,,,需要注意的在代码中已经注释出来了参考代码:#include<stdio.h>int main(){ int a; …… 题解列表 2017年10月18日 0 点赞 0 评论 928 浏览 评分: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 评论 1053 浏览 评分: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 评论 914 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:**************************Hello World!**************************…… 题解列表 2017年10月18日 0 点赞 0 评论 1285 浏览 评分: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 评论 1669 浏览 评分: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 评论 1391 浏览 评分:0.0
模拟计算器 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; char c; …… 题解列表 2017年10月19日 0 点赞 0 评论 1115 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:参考代码:#include<stdio.h>int main(){ int s; scanf("%d",&s); switch(s/10) { cas…… 题解列表 2017年10月19日 1 点赞 0 评论 813 浏览 评分:0.0