椰程智库 本次搜索耗时 0.071 秒,为您找到 19 个相关结果.
  • 第四章

    0722 c++笔记 1.cin语句 #include <iostream> using namespace std ; int main () { int t1 , t2 , t3 , t4 , t5 ; cin >> t1 >> t2 >> t3 >> t4 >> t...
  • 第一章

    598 2023-07-19 《“难”烧脑c++》
    c++学习笔记 第1-1课 stream:流 c++学习笔记 第1-1课 #include <iostream> int main () { std :: cout << "Hello World!\n" ; } //include声明 引用的库文件 //main函数 为主函数 endl(en...
  • 第七章

    0725 c++笔记 Switch语句 1.考试成绩 #include <iostream> using namespace std ; int main () { char a ; cin >> a ; switch ( a ) { case 'A' :...
  • 第六章

    0724 c++笔记 switch语句 1. 值班医生 #include <iostream> using namespace std ; int main () { int n ; cout << "请输入星期的编号" ; cin >> n ; //#程序在...
  • 第八章

    0726 c++笔记 while语句 1.数字反转 Created with Raphaël 2.1.2开始输入n的值输出n%10的值n=n/10n!=0结束yesno #include <iostream> using namespace std ; int main () { int a ; c...
  • 第三章

    0721 c++笔记 1.长整型 #include <iostream> using namespace std ; int main () { int a = 125 ; //定义整型变量a long long b = 241748364856789 ; //定义长整型变量b ...
  • 第二章

    0720 c++笔记 #include <iostream> using namespace std ; int main () { int a = 2 , b = 5 ; //变量a,b为整形,并赋值给变量赋值,初始赛场上的得分 cout << a << " " << b ; ...
  • 空白文档

    362 2024-01-28 《mg3学习笔记》
    g笔记 无页风扇 g笔记 无页风扇 int main () { pen . hide (); pen . size ( 30 ); pen . e ( 80 , 160 , 10 ); pen . up (). bk ( 220 ); pen . rr ( 100 , 150...
  • 顺序结构

    周日班 1030 cpp 笔记 第12 课 求商取余 操作 周日班 1030 cpp 笔记 第12 课 求商取余 操作 交换一个两位数的个位与十位数 #include <iostream> #include <cstdio> using namespace std ; int main (){ ...