本帖最後由 若晴 於 2023-7-19 09:23 編輯
- #include<bits/stdc++.h>
- using namespace std;
- string n;
- int main()
- {
- cin>>n;
- for(int i=0;i<n.length();i++)
- {
- if(n[i]>='a' && n[i]<='z')
- cout<<char(n[i]-'a'+'A');
- else if(n[i]>='A' && n[i]<='Z')
- cout<<char(n[i]-'A'+'a');
- }
- cout<<endl;
- return 0;
- }
複製代碼- #include<bits/stdc++.h>
- using namespace std;
- int n;
- int main()
- {
- cin>>n;
- for(int i=2;i<=n;i++)
- {
- for(int j=2;j<i;j++)
- {
- if(i%j==0)
- break;
- else if(j==i-1)
- cout<<i<<" ";
- }
- }
- cout<<endl;
- return 0;
- }
複製代碼- #include<bits/stdc++.h>
- using namespace std;
- int n;
- int main()
- {
- cin>>n;
- for(int i=1;i<=5;i++)
- {
- for(int j=1;j<=5;j++)
- {
- if(n==0)
- cout<<i<<"*"<<j<<"="<<i*j<<"\t";
- else if(n==1)
- cout<<j<<"*"<<i<<"="<<i*j<<"\t";
- else
- {
- cout<<"error";
- return 0;
- }
- }
- cout<<endl;
- }
-
- return 0;
- }
複製代碼 |