Advertisement
DidiMilikina

03. Latin Letters

Oct 9th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <iomanip>
  4. using namespace std;
  5.  
  6. int main() {
  7.     for (char letter = 'a'; letter <= 'z'; letter++)
  8.     {
  9.         cout << " " << letter << endl;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement