此题可AC(C语言代码) 摘要:解题思路:注意事项: 此题可AC参考代码:#include<stdio.h>int main(){ int i; for (i = 10; i <= 1000; …… 题解列表 2018年07月14日 1 点赞 0 评论 939 浏览 评分: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 评论 1643 浏览 评分: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 评论 1186 浏览 评分: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 评论 753 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:include<stdio.h>int main(){ printf("**************************\n"); printf("Hel…… 题解列表 2018年07月14日 0 点赞 0 评论 585 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:include<stdio.h>int main(){ printf("**************************\n"); printf("Hel…… 题解列表 2018年07月14日 0 点赞 0 评论 629 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\n"); printf("He…… 题解列表 2018年07月14日 0 点赞 0 评论 813 浏览 评分:0.0
IP判断 (C语言代码) 摘要:#include <stdio.h> #include <string.h> #include <math.h> int deal(char s[],int n);//函数解决 int mai…… 题解列表 2018年07月14日 0 点赞 0 评论 2615 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:通过数组存储用户输入的字符串,N代表字符串个数,STR_LEN代表最大字符串长度。然后写两个函数完成解题,一个是排序函数,利用选择法排序(可以利用其他更高效的排序法),另一个是交换字符串函数…… 题解列表 2018年07月14日 7 点赞 1 评论 835 浏览 评分:0.0
母牛的故事 此题可AC (C语言代码) 摘要:解题思路: //四年后,本年牛的数量等于上一年的数量加三年前的数量注意事项: 参考代码:#include<stdio.h>int…… 题解列表 2018年07月14日 1 点赞 0 评论 837 浏览 评分:0.0