返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.     int n;
  9.     string str="Hello world!";
  10.     cout<<str<<endl;
  11.     cout<<"字元 'l' 的索引位置 (由前往後查找): "<<str.find('l',4)<<endl;
  12.     cout<<"字元 'e' 的索引位置 (由後往前查找): "<<str.rfind('e')<<endl;
  13.    
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

本帖最後由 劉冠毅 於 2024-12-14 14:46 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.     double a=3.456789;
  9.     printf("%.1f\n",a);
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     double a=3.456789;
  6.     cout<<fixed<<setw(9)<<setfill('0')<<setprecision(2)<<a;
  7.     return 0;
  8. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     int i;
  6.     cin>>i;
  7.     cout<<i+9;
  8. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     int o;
  6.     float i=0;
  7.     i=i+o*23.34;
  8.     printf("%.2f\n",i);
  9.    
  10.    
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     float a;
  6.     float b;
  7.     float c;

  8.     float d=0;
  9.     float e=0;
  10.     cout<<"輸出三個整數";
  11.     cin>>a>>b>>c;

  12.     cout<<a<<"+"<<b<<"+"<<c<<"="<<a+b+c<<endl;
  13.     d=a+b+c;

  14.     d=d/3;
  15.     cout<<d<<endl;

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

TOP

返回列表