1036: [编程入门]带参数宏定义练习 摘要:```cpp #include #define change(a,b) t=a,a=b,b=t int main() { int a,b,t; scanf("%d %d",&a,&b…… 题解列表 2022年12月06日 0 点赞 0 评论 307 浏览 评分:6.0
1051: [编程入门]结构体之成绩统计2 摘要:```cpp #include int n,i,sum1=0,sum2=0,sum3=0,temp=0,cout=0; struct student{ char id[100]; cha…… 题解列表 2022年12月06日 0 点赞 0 评论 219 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 摘要:```cpp #include struct student{ char id[100]; char name[100]; int score[3]; }s; void input…… 题解列表 2022年12月06日 0 点赞 0 评论 227 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:```cpp #include int month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31},i,sum=0; struct time { i…… 题解列表 2022年12月06日 0 点赞 0 评论 222 浏览 评分:9.9
蓝桥杯算法提高VIP-单词个数统计 摘要:#include<bits/stdc++.h> using namespace std; int main(void){ int cnt=1; string s; getline(ci…… 题解列表 2022年12月06日 0 点赞 0 评论 221 浏览 评分:9.9
1042: [编程入门]电报加密 摘要:```cpp #include using namespace std; int main() { char s[1000]; int i; gets(s); …… 题解列表 2022年12月06日 0 点赞 0 评论 371 浏览 评分:9.9
1196: 去掉空格 摘要:```cpp #include using namespace std; int main() { char s[1000]; while(gets(s)) {…… 题解列表 2022年12月06日 0 点赞 0 评论 233 浏览 评分:9.9
1124: C语言训练-大、小写问题 摘要:```cpp #include int main() { char s[1000]; gets(s); int len1=strlen(s); for(int i=0;i='A'…… 题解列表 2022年12月06日 0 点赞 0 评论 281 浏览 评分:9.9
1032: [编程入门]自定义函数之字符串连接 摘要:```cpp #include int main() { char s[1000],t[1000]; gets(s); int len1=strlen(s); gets(t);…… 题解列表 2022年12月06日 0 点赞 0 评论 805 浏览 评分:7.3
1031: [编程入门]自定义函数之字符串反转 摘要:```cpp #include int main() { char s[1000]; gets(s); int len=strlen(s); for(int i=len-1;i>…… 题解列表 2022年12月06日 0 点赞 0 评论 255 浏览 评分:9.9