C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路 这个是正确的!注意事项:参考代码:#include<stdio.h>int main(){ char c1, c2, c3, c4, c5; c1 = 'C'; c2 = &…… 题解列表 2018年07月14日 0 点赞 0 评论 711 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_03 (C语言代码) 摘要:#include <stdio.h> int num[3][3]={//3*3的表格 0,-1,1, 1,0,-1, -1,1,0 }; int main(){ int a,b,n;…… 题解列表 2018年07月14日 5 点赞 0 评论 947 浏览 评分:0.0
C二级辅导-分段函数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float x, y; scanf("%f", &x); if (x < 1) y = x; else if …… 题解列表 2018年07月14日 2 点赞 0 评论 883 浏览 评分:0.0
迷宫问题 (C++代码) 摘要:解题思路: 简单 BFS题 注意事项: 多组数据注意初始化即可参考代码:#include <queue> #include <iostream> #include <cstring> using…… 题解列表 2018年07月14日 1 点赞 0 评论 669 浏览 评分:0.0
此题可AC(C语言代码) 摘要:解题思路:注意事项: 此题可AC参考代码:#include<stdio.h>int main(){ int num[100], i, sum = 0, n…… 题解列表 2018年07月14日 1 点赞 0 评论 753 浏览 评分:0.0
此题可AC(C语言代码) 摘要:解题思路:注意事项: 此题可AC参考代码:#include<stdio.h>int main(){ int i; for (i = 10; i <= 1000; …… 题解列表 2018年07月14日 1 点赞 0 评论 708 浏览 评分:0.0
此题可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10], i, t, j; for (i = 0; i < 10; …… 题解列表 2018年07月14日 1 点赞 0 评论 1191 浏览 评分:0.0
超简单 可AC(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c); if (a < b) …… 题解列表 2018年07月14日 2 点赞 0 评论 888 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:include<stdio.h>int main(){ int a,b; sacnf("%d %d",&a,&b); printf("%d %d",a,…… 题解列表 2018年07月14日 0 点赞 0 评论 574 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:include<stdio.h>int main(){ printf("**************************\n"); printf("Hel…… 题解列表 2018年07月14日 0 点赞 0 评论 411 浏览 评分:0.0