多输入输出练习1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,tem; while(scanf("%d",&n)!=EOF) { …… 题解列表 2017年09月04日 3 点赞 0 评论 1525 浏览 评分:7.3
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:注意Hello World 大小写用美式键盘输入法打符号参考代码:#include<stdio.h>int main(){ printf("26个星号\n"); printf("Hello…… 题解列表 2017年09月04日 0 点赞 0 评论 892 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:交流与分享参考代码:#include<stdio.h>int func(char *s,int m);int main(){ char s[80]; int m,n…… 题解列表 2017年09月04日 5 点赞 0 评论 1186 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:注意事项:注意空格参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[260],str2[260]; in…… 题解列表 2017年09月04日 4 点赞 3 评论 3358 浏览 评分:9.9
人见人爱A+B (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,AH,AM,AS,BH,BM,BS; scanf("%d",&N); while(…… 题解列表 2017年09月04日 0 点赞 0 评论 1052 浏览 评分:2.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ if(n==2) return 1; if(n==3) return 2; else re…… 题解列表 2017年09月04日 0 点赞 0 评论 843 浏览 评分:0.0
不容易系列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,a,i,sum; scanf("%d",&N); while(N--) { …… 题解列表 2017年09月04日 0 点赞 0 评论 936 浏览 评分:8.0
哥德巴赫曾猜测 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int isprimer(int n);int main(){ int n,count; w…… 题解列表 2017年09月04日 0 点赞 0 评论 1377 浏览 评分:9.9
十->二进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,tem,num[20]={0},i,j,flag; wh…… 题解列表 2017年09月04日 0 点赞 0 评论 1613 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:参考代码:#include <stdio.h>int main(){ float f; scanf("%f",&f); printf("c=%.2f\n",5*(f-32)/9); …… 题解列表 2017年09月04日 8 点赞 0 评论 1726 浏览 评分:0.0