Advertisement
triclops200

csp example.

Jul 20th, 2012
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.35 KB | None | 0 0
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5. <%for(int i = 0; i < 100;i++){ %>
  6. <span class="text"><%= i %> </span><br/>
  7. <%}%>
  8. </body>
  9. </html>
  10. -------------------------------
  11. int main(){
  12. cout<<"<html>\n
  13. <head>\n
  14. </head>\n
  15. <body>\n";
  16. for(int i = 0; i < 100; i++){
  17. cout<<"<span class=\"text\">";
  18. cout<<i;
  19. cout<<"</span></br>\n";
  20. }
  21. cout<<"</body>\n
  22. </html>";
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement