1006: [编程入门]三个数找最大值 摘要:#include<stdio.h> int main() { int i,j,k,max; scanf("%d%d%d",&i,&j,&k); if(i>j) …… 题解列表 2022年05月06日 0 点赞 0 评论 466 浏览 评分:0.0
1007: [编程入门]分段函数求值 摘要:#include<stdio.h> int main() { int i,y; scanf("%d",&i); if(i<1){ y=i; …… 题解列表 2022年05月06日 0 点赞 0 评论 450 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;long long zm,sz,kg,qt;int main(){…… 题解列表 2022年05月06日 0 点赞 0 评论 405 浏览 评分:0.0
[编程入门]带参数宏定义练习 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; co…… 题解列表 2022年05月06日 0 点赞 0 评论 349 浏览 评分:0.0
[编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; co…… 题解列表 2022年05月06日 0 点赞 0 评论 289 浏览 评分:0.0
[编程入门]电报加密 题解 摘要:解题思路:运用了ASCII里的位置就可以做出此题。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){…… 题解列表 2022年05月06日 0 点赞 0 评论 438 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:#include<stdio.h> int main() { int i; scanf("%d",&i); if(i>=90){printf("A");} …… 题解列表 2022年05月06日 0 点赞 0 评论 485 浏览 评分:0.0
[编程入门]自定义函数之数字后移 摘要:解题思路:wu注意事项:wu参考代码:#include<stdio.h>int i, m, n, a[20];int input() { scanf("%d",&n); for (int i …… 题解列表 2022年05月06日 0 点赞 0 评论 391 浏览 评分:0.0
[编程入门]结构体之成绩记录 题解 摘要:解题思路:这题就是简单的结构体输入输出。注意事项:中间要用“,”分隔开,最后一个科目后不用“,”要换行。参考代码:#include<bits/stdc++.h>using namespace std;…… 题解列表 2022年05月06日 0 点赞 0 评论 339 浏览 评分:0.0
带参数宏定义练习 题解(c++) 摘要:解题思路:不就是简单的交换嘛!我提供给大家3种解法。请大家多多支持!注意事项:无。参考代码:第一种是完全按照题目要求去用函数做(推荐);二、三是纯属写答案。1.#include<bits/stdc++…… 题解列表 2022年05月06日 0 点赞 0 评论 400 浏览 评分:0.0