mirror of
https://github.com/Estom/notes.git
synced 2026-04-01 01:50:32 +08:00
20 lines
346 B
C++
20 lines
346 B
C++
// #include <iostream>
|
|
using namespace std;
|
|
//std 命名空间,相当于包
|
|
int fff = 10;
|
|
// int main()
|
|
// {
|
|
// int a=0, b = 0;
|
|
// cout << "hello world" <<endl;
|
|
|
|
// while(a<10){
|
|
// a++;
|
|
// }
|
|
// for(b=1;b<11;b++){
|
|
// b++;
|
|
// }
|
|
// cout<<"a:"<<a<<endl;
|
|
// cout<<"b:"<<b<<endl;
|
|
|
|
// return 0;
|
|
// }
|