You'll need dynamic SQL to do that, e.g.
SQL> declare
2 l_str varchar2(200);
3 begin
4 for cur_r in (select 'MIKE' username from dual union all
5 select 'IMPORTER' from dual union all
6 select 'DIP' from dual
7 )
8 loop
9 l_str := 'grant select on emp to ' || cur_r.username;
10 dbms_output.put_line(l_str);
11 execute immediate l_str;
12 end loop;
13 end;
14 /
grant select on emp to MIKE
grant select on emp to IMPORTER
grant select on emp to DIP
PL/SQL procedure successfully completed.
SQL>
I used several users from my database to fetch usernames in the cursor FOR loop; you'd substitute it with your own select distinct owner from dba_objects where owner like 'SCHEMA_%'
.