C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){printf("**************************\n");printf("Hello Wor…… 题解列表 2017年10月02日 0 点赞 0 评论 724 浏览 评分:0.0
WU-陶陶摘苹果2 (C++代码) 摘要:题目很简单参考代码:#include<iostream> using namespace std; int main() { int n,m; cin>>n>>m; int sum=0;…… 题解列表 2017年12月09日 4 点赞 0 评论 1365 浏览 评分:0.0
WU-判定字符位置 (C++代码) 摘要:题目很简单 直接写就行#include<iostream> #include<cstring> using namespace std; int main() { string str; …… 题解列表 2017年12月09日 2 点赞 0 评论 1837 浏览 评分:0.0
WU-整除问题 (C++代码) 摘要:很简单的问题参考代码:#include<iostream> using namespace std; int main() { int min,max,factor; cin>>min>>m…… 题解列表 2017年12月10日 3 点赞 1 评论 827 浏览 评分:0.0
WU-拆分位数 (C++代码) 摘要:解题思路:用string 来解题比较参考代码:#include<iostream> #include<cstring> using namespace std; int main() { s…… 题解列表 2017年12月10日 2 点赞 0 评论 1379 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:#include<stdio.h> #include<string.h> #define N 80 int main() { int i, j; char str[4]…… 题解列表 2017年10月27日 1 点赞 0 评论 843 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:根据刚学的scanf进行使用注意事项:题目只求China的密码,当该值无任何输入时,以输出内容为准,而且若不输入&,系统会崩溃,%c用来输入字符型参考代码:#include<stdio.h>…… 题解列表 2017年10月03日 6 点赞 3 评论 1002 浏览 评分:0.0
printf基础练习2 (C语言代码) 摘要:解题思路:看看题解确实挺好的注意事项:参考代码:#include<stdio.h>int main(){int a;scanf("%d",&a);//这里不需要换行吧?/nprintf("%#o …… 题解列表 2017年10月03日 0 点赞 0 评论 1027 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:#include<stdio.h>int main(){ int a,b,c,t; scanf("%d%d",&a,&b,&c); if(a>b){ …… 题解列表 2017年10月03日 1 点赞 0 评论 1112 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){printf("hello world\n");return 0;}…… 题解列表 2017年10月04日 0 点赞 0 评论 807 浏览 评分:0.0