- 博客(6)
- 收藏
- 关注
原创 题目6
#include<stdio.h> #define PI 3.1415926 include<stdlib.h> #include using namespace std; double circle(double x); int main() { double r, v; while (cin>>r) { v = circle®; cout <<...
2018-12-07 19:02:13 144
原创 题目3
#include using namespace std; int main() { int t, ans, i; char c[51]; while (cin >> t) { cin >> c; ans = 0; for (i = 0; i < (t - 1); i++) { if (c[i] != c[i + 1]) ans++; } cout <<...
2018-12-07 19:00:27 162
原创 题目7
#include using namespace std; int main() { int A, B,s; while (cin >> A >> B) { s = A + B; cout << s << endl; } }
2018-12-07 18:59:28 368
原创 题目6
额。。暴力排序? #include using namespace std; int main() { char a, b, c; while (cin >> a >> b >> c) { if (a > b&&b > c) cout << c << " " <&
2018-12-07 18:58:35 105
原创 题目8
#include<stdio.h> #include using namespace std; int main() { int A, B; while (cin >> A >> B) { int t; t = A + B; if (t % 86 == 0) cout << “yes”<< endl; else cout <<...
2018-12-07 18:56:59 123
原创 题目1
不需要的直接跳过,不必输出。在转换大小写之前可以先判断是不是元音,这样可以一次性删除。 #include #include #include using namespace std; int main() { char a[100]; int i,length; scanf("%s",&a); length=strlen(a); for(i=0;i<length;i++) { if...
2018-12-07 18:55:51 141
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人