首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴小黎同学的代码贴全部
#include<iostream> 
using namespace std;
int main()
{
int i,j,k;
   for(i=1;i<=4;i++)
   {
    for(j=0;j<2*i-1;j++)
    cout<<"*";
    cout<<endl;
   }
   
......................
阅读全部 | 2022年10月30日 10:35
#include <iostream>
using namespace std;
int main()
{
    int x,y;
    cin>>x;
    if(x>=10)
    {
        y=x-1;
        cout<<"y"<<y<<endl;
    }
    else if(1<x<10)
......................
阅读全部 | 2022年10月29日 16:11
#include <iostream>
using namespace std;
int main()
{
    int x,y;
    cin>>x;
    if(x>=10)
    {
        y=x-1;
        cout<<"y"<<y<<endl;
    }
    else if(1<x<10)
......................
阅读全部 | 2022年10月29日 16:11
# include <iostream>
using namespace std;
int main()
{
    int a,b,c,temp;
    cin>>a>>b>>c;
    if(a>b)
    {
        temp=a;
        a=b;
        b=temp;
    }
......................
阅读全部 | 2022年10月27日 11:48
#include <iostream>
using namespace std;
int main ()
{
    double r,c;
    cout<<"输入圆的半径"<<endl;
    cin>>r;
    c=2*r*3.14;
    cout<<"圆的周长为"<<c<<endl;
    return 0;
}
阅读全部 | 2022年10月23日 16:21
#include <iostream>
using namespace std;
int main()
{
    cout<<"*****"<<endl;
    cout<<"欢迎光临"<<endl;
    cout<<"*****"<<endl;
    return 0;
}
阅读全部 | 2022年10月23日 09:26
#include <iostream>
using namespace std;
int main()
{
    cout<<"*****"<<endl;
    cout<<"欢迎光临"<<endl;
    cout<<"*****"<<endl;
    return 0;
}
阅读全部 | 2022年10月23日 09:26
1
小黎同学