C语言训练-字符串正反连接 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { char s[100], t[50]; int len; i…… 题解列表 2017年10月30日 1 点赞 0 评论 1040 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void zhuangzhi (int a[][3])//装置函数{ int i,j,t; for(i=0;i<3;i++)…… 题解列表 2017年10月30日 0 点赞 0 评论 1306 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(void){ printf("**************************\n"); printf("Holle Wo…… 题解列表 2017年10月30日 0 点赞 0 评论 861 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码://jgt #include<stdio.h> struct DAY { int year; int month; int day;…… 题解列表 2017年10月30日 1 点赞 0 评论 784 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题8.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(int argc,char**argv){ int a,m; scanf("%d",&a); m=i…… 题解列表 2017年10月30日 0 点赞 0 评论 937 浏览 评分:0.0
A+B for Input-Output Practice (IV) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int t, a, sum, i; scanf("%d", &t); do { &nb 题解列表 2017年10月30日 0 点赞 0 评论 718 浏览 评分: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…… 题解列表 2017年10月30日 0 点赞 0 评论 856 浏览 评分: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",…… 题解列表 2017年10月30日 0 点赞 0 评论 876 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c,d,e;scanf("%d%d",&a,&b);scanf("%d%d",&c,&d);e=a…… 题解列表 2017年10月30日 0 点赞 0 评论 940 浏览 评分:0.0