赞
踩
- #include<iostream>
- #include<cstdio>
- int main(){
- long long a=0, b=0, m=0, n=0, ans=0, c=0, i;
- scanf("%lld%lld%lld%lld", &a, &b, &m, &n);
- ans = a+b;
- for(i=3; i<=n; i++) {
- c = a+b;
- ans += c;
- a = b;
- b = c;
- if(c>=m) break;
- }
- printf("%lld\n", ans);
- return 0;
- }
- #include <bits/stdc++.h>
- using namespace std;
- int main() {
- int n;
- cin >> n;
- for(int i = 1; i <= n; i++) {
- for(int j = 1; j <= n; j++) {
- if (j == 1 || j == n) {//第一列或者最后一列,输出|
- cout << '|';
- } else if (i == n / 2 + 1) {//中间行,输出-
- cout << '-';
- } else {//其他,输出a
- cout << 'a';
- }
- }
- cout << endl;
- }
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。