1 条题解

  • 0
    @ 2025-4-12 21:33:38

    C :

    #include <stdio.h>
    #include <math.h>
    
    int main(void){
    	printf("**************************\n");
    	printf("         Very    Good!\n");
    	printf("**************************\n");
    	return 0;
    }
    

    C++ :

    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        cout<<"**************************"<<"\n";
        cout<<"         Very    Good!"<<"\n";
        cout<<"**************************";
        return 0;
    }
    
    • 1

    C语言程序设计教程(第三版)课后习题1.5

    信息

    ID
    304
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    (无)
    递交数
    0
    已通过
    0
    上传者