返回列表 發帖

1、寫一函式,函式名稱為:basic01;接收三個浮點數參數,三個浮點數相乘後回傳浮點數結果。

TOP

寫一函式,函式名稱為:basic04;接收一整數參數,然後在畫面上畫出倒三角形。
例如:輸入5,則輸出畫面為:


*****
****
***
**
*

TOP

寫一函式,函式名稱為:basic08;接收兩個字串參數,然後會將兩個字串接起來後,回傳這個新的字串。

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. float basic01(float x,float y,float z)
  4. {
  5.     return x*y*z ;
  6. }
  7. int main()
  8. {
  9.     float a,b,c;
  10. cin>>a>>b>>c;
  11. cout<<basic01(a,b,c);
  12.     return 0;
  13. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. void basic04(int x)
  4. {
  5.     for(int i=x;i>0;i--)
  6.     {
  7.         for(int k=i;k>0;k--)
  8.         {
  9.             cout<<"*";
  10.         }
  11.         cout<<endl;
  12.     }
  13.     return ;
  14. }
  15. int main()
  16. {
  17.     int a;
  18.     cin>>a;
  19.     basic02(a);
  20.     return 0;
  21. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string basic08(string x,string y)
  4. {

  5.     return x+y;
  6. }
  7. int main()
  8. {
  9.     string a,b;
  10.     cin>>a>>b;
  11.     cout<<basic08(a,b);
  12.     return 0;
  13. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string str1="Good morning!";
  7.     char str2[14]="Good morning!";
  8.     cout<<str1<<endl;
  9.     cout<<str2<<endl;
  10.     cout<<str1[0]<<endl;
  11.     cout<<str2[0]<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     getline(cin,str);
  9.     cout<<str<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <string>
  3. #include <algorithm> // For std::transform
  4. using namespace std;

  5. int main() {
  6.     string str;
  7.     cout << "輸入一字串: ";
  8.     getline(cin, str);

  9.     // Convert to uppercase
  10.     transform(str.begin(), str.end(), str.begin(), ::toupper);
  11.     cout << "轉為大寫: " << str << endl;

  12.     // Convert to lowercase
  13.     transform(str.begin(), str.end(), str.begin(), ::tolower);
  14.     cout << "轉為小寫: " << str << endl;

  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     string str;
  6.     getline(cin,str);
  7.     int n;
  8.     cin>>n;
  9.     cout<<str[n-1];
  10. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. void a(string x,int y)
  4. {
  5.     for(int i;i<y;i++)
  6.     {
  7.         cout<<x<<endl;
  8.     }
  9.     return ;
  10. }

  11. int main()
  12. {
  13.     int y;
  14.     string x;
  15.     cin>>x>>y;
  16.     a(x,y);
  17.     return 0;
  18. }
複製代碼

TOP

返回列表