/* 试编一程序,输出此首诗中的一句, 如“春眠不觉晓,处处蚊子咬。” */ #include<iostream> using namespace std; int main() { cout<<" 春 晓"<<endl; cout<<"春眠不觉晓,"<<endl; cout<<"处处蚊子咬。"<<endl; cout<<"夜来嗡嗡声,"<<endl; cout<<"脓包知多少。"<<endl; return 0; }
Scratch2代码
Scratch3代码