第2课 春晓-2021.03.05 《小学生C++趣味编程》--C++、Scratch
作者:互联网
/*
试编一程序,输出此首诗中的一句,
如“春眠不觉晓,处处蚊子咬。”
*/
#include<iostream>
using namespace std;
int main()
{
cout<<" 春 晓"<<endl;
cout<<"春眠不觉晓,"<<endl;
cout<<"处处蚊子咬。"<<endl;
cout<<"夜来嗡嗡声,"<<endl;
cout<<"脓包知多少。"<<endl;
return 0;
}
Scratch2代码
Scratch3代码
标签:2021.03,cout,05,int,代码,春眠,C++ 来源: https://blog.csdn.net/dllglvzhenfeng/article/details/121761121