C语言程序设计教程(第三版)课后习题11.8 (Java代码) 摘要:解题思路:注意事项:eclipse上运行无错,答案正确,但是在题目下运行显示运行错误所以本答案仅供参考参考代码:import java.util.HashSet;import java.util.It…… 题解列表 2017年07月13日 0 点赞 0 评论 1770 浏览 评分:9.9
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(void) { int a,b; scanf("%d%d",&a,&b); pri…… 题解列表 2017年07月12日 0 点赞 0 评论 993 浏览 评分:6.0
字符逆序 (C语言代码) 摘要:#include<stdio.h>#include<string.h>int box(char a[100],char b[100]){ int i,j,k=0; j=strlen(a)…… 题解列表 2017年07月12日 0 点赞 0 评论 1111 浏览 评分:0.0
A+B for Input-Output Practice (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,c,n; scanf("%d",&n); while((n--)&&scanf("%d",&a)) { c=0; …… 题解列表 2017年07月12日 1 点赞 0 评论 1218 浏览 评分:6.3
A+B for Input-Output Practice (VII) (C语言代码) 摘要:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n\n",a+b); re…… 题解列表 2017年07月12日 0 点赞 0 评论 1028 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while (n--) { scanf("%d%d",&a,&b); printf…… 题解列表 2017年07月12日 0 点赞 0 评论 915 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b ; while(scanf("%d %d",&a,&b)) { if (a==0&&b==0) brea…… 题解列表 2017年07月12日 1 点赞 0 评论 1231 浏览 评分:0.0
A+B for Input-Output Practice (IV) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,c; while(scanf("%d",&a)&&a>0) { c=0; while (a--) …… 题解列表 2017年07月12日 0 点赞 1 评论 689 浏览 评分:2.0
A+B for Input-Output Practice (V) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,c,n; scanf("%d",&n); while((n--)&&scanf("%d",&a)) { c=0; …… 题解列表 2017年07月12日 0 点赞 0 评论 1043 浏览 评分:0.0