返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cmath>
  4. using namespace std;
  5. int main(void){
  6.    
  7.    int n;
  8.    cin >> n ;
  9.    int x = (n+1) * (n-1+1);
  10.    int xx = x / 2;
  11.    cout << xx << endl;
  12.     system("pause");
  13.     return 0 ;
  14. }   
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cmath>
  4. using namespace std;
  5. int main(void){
  6.    
  7.    for(int x = 65 ;x < 91 ; x++){
  8.            cout << (char)x << endl;
  9.            }
  10.            for(int y =97; y < 123; y++){
  11.                    cout << (char)y << endl;
  12.                    }
  13.     system("pause");
  14.     return 0 ;
  15. }   
複製代碼

TOP

返回列表