[编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s,b;int main(){ cin>>s; for(int …… 题解列表 2022年05月06日 0 点赞 0 评论 310 浏览 评分:0.0
1671: 小九九 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int i,j; for (i=1;i<10;i++) { …… 题解列表 2022年05月06日 0 点赞 0 评论 442 浏览 评分:0.0
[编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s,b;int main(){ cin>>s; for(int …… 题解列表 2022年05月06日 0 点赞 0 评论 341 浏览 评分:0.0
宏定义之闰年判断 摘要:解题思路:大家都知道判断闰年要要求%4==0,%100==0,%400==0;注意事项:L,N是大写参考代码:#include<bits/stdc++.h>using namespace std;in…… 题解列表 2022年05月06日 0 点赞 0 评论 349 浏览 评分:4.7
好理解的代码 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; string ss="ABCDEFGHIJKLMNOPQRSTUVWXYZ"…… 题解列表 2022年05月06日 0 点赞 0 评论 372 浏览 评分:0.0
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 评论 395 浏览 评分:0.0
1007: [编程入门]分段函数求值 摘要:#include<stdio.h> int main() { int i,y; scanf("%d",&i); if(i<1){ y=i; …… 题解列表 2022年05月06日 0 点赞 0 评论 414 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;long long zm,sz,kg,qt;int main(){…… 题解列表 2022年05月06日 0 点赞 0 评论 368 浏览 评分:0.0
[编程入门]带参数宏定义练习 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; co…… 题解列表 2022年05月06日 0 点赞 0 评论 304 浏览 评分:0.0
[编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; co…… 题解列表 2022年05月06日 0 点赞 0 评论 259 浏览 评分:0.0