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

View File

@ -0,0 +1,11 @@
#include <iostream>
using namespace std;
int i, l;
string s;
int main(){
getline(cin, s);
for(i = 0; i < s.size(); i ++ ){
if(s[i] != ' ') l ++ ;
}
cout << l;
}