|
|
发表于 2025-7-5 17:18:52
|
显示全部楼层
abcdefg
HIJKLMN
OPQRST
uvwxyz
1234567890
=+-*/%
!&|<>
[]{}''"".,;
[]{}''"".,;
I have a backpack.
It is large and it is blue.
It is a birthday gift from my parents.
I love it very much.
It is very "hard-working",
because I keep all my school things in it.
It is very heavy.
It is with all the time during school days.
It is a good friend of mine.
#include <iostream>
using namespace std;
int main() {
cout<< "hello"<< endl << "cat"; return 0;
}
#include <iostream>
using namespace std;
int main() {
cout<< "Where are you from?"<< endl << "I'm from China.";
return 0;
}
#include <iostream>
using namespace std;
int main() {
cout<< "3 + 4 ="<< 3 + 4 << endl;
cout<< "2 - 1 ="<< 2 - 1 << endl;
cout<< "4 * 5 ="<< 4 * 5 << endl;
cout<< "9 / 4 ="<< 9 / 4 << endl;
cout<< "9 % 4 ="<< 9 % 4 << endl;
cout<< "(1 / (1 + 1)) * 2 = " << (1 / (1 + 1)) * 2 << endl;
return 0;
}
|
|