解题思路:
用for来回遍历数组模拟
注意事项:
多个for循环一步一步理清楚步骤,可能有些许繁琐,但最暴力。
参考代码:
#include<bits/stdc++.h> using namespace std; int main() { int i,n; char s[101]; int a[26]={2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97}; cin>>s; int sum[26]={0}; n=strlen(s); for(i=0;i0&&sum[i]<minn) { minn=sum[i]; } } t=maxn-minn; for(int i=0;i<25;i++) { if(t==a[i]) { b=0; } } if(b==0) { cout<<"Lucky Word"<<endl<<t; } else cout<<"No Answer"<<endl<<"0"; return 0; }
0.0分
11 人评分
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:636 |
WU-链表数据求和操作 (C++代码)浏览:1382 |
IP判断 (C语言代码)浏览:820 |
【计算球体积】 (C语言代码)浏览:1158 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:350 |
字符逆序 (C语言代码)浏览:645 |
Hello, world! (C语言代码)浏览:766 |
【偶数求和】 (C语言代码)浏览:460 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
1035 题解浏览:875 |