Add FZOI Codes

This commit is contained in:
2024-06-26 22:14:00 +08:00
parent 8f564ca60e
commit b80791cfad
49 changed files with 1653 additions and 0 deletions

23
FZOI/输出字母表.cpp Normal file
View File

@ -0,0 +1,23 @@
#include <iostream>
using namespace std;
int main()
{
for(int i = 1; i <= 26; ++ i)
{
cout << (char)(65 + i - 1) << " ";
if(i % 6 == 0)
{
cout << endl ;
}
}
cout << endl ;
for(int i = 26; i >= 1; -- i)
{
cout << (char)(97 + i - 1) << " ";
if(i % 6 == 0)
{
cout << endl ;
}
}
}