在下列代码横线处埴写(),可以将输入的单词的大写字母全部变小写。
#include <bits/stdc++.h>
using namespace std;
int main(){
char word[100];
int l = strlen(word);
for(int i=0;i<l;i++){
if(word[i]>='A' && word[i]<='Z'){
__________________
}
}
return 0;