c程式題用輸出正方形怎麼做,c 程式題用 輸出一個正方形怎麼做?

時間 2021-10-15 00:23:17

1樓:匿名使用者

static void main(string args)//換行

console.writeline();

for (int i = 0; i < length-2; i++)//輸出最後一個“*”

console.write("* ");

//換行

console.writeline();

}//輸出最後一行的“*”

for (int i = 0; i < length; i++)console.readkey();}

2樓:匿名使用者

上學時候做的

int d;

for(int i = 0; i < d; i++)console.writeline();}

3樓:匿名使用者

//定義正方形邊長

int x;

for(int i = 0; i < x; i++)console.writeline();}

4樓:匿名使用者

console.write("****");

console.write("* *");

console.write("* *");

console.write("* *");

console.write("****");

編寫一個程式,要求使用類,輸入數字作為正方形的邊長,該類計算出正方體的表面積、體積,並輸出在螢幕上

5樓:

#include

class square

int cubage()

void setside(int side1)};int main()

不知道為什麼很多人的高踩回答裡都在cin和cout裡直接用成員函式。vc6++這麼寫肯定報錯。

6樓:焦初陽

寫一個club類

屬性a為邊長

有方法area()

7樓:匿名使用者

#include

class square

int cubage(int side)

};int main()

c#編寫一個程式,計算三角形,正方形和圓形的面積,

8樓:迷惘

using system;

using system.collections.generic;

using system.linq;

using system.text;

namespace areademo

class area

////// 求正方形面積

////// 邊長

/// 面積

public double getsquarearea(double side)

////// 求圓面積

//////

///public double getcirclearea(double radius)}}}

9樓:楊志水瓶

#include

#include

#include

using namespace std;

class base

;class ******** : public basevoid disp()

private:

int m_base;

int m_height;

};class square : public basevoid disp()

private:

int m_side;

};class circle : public basevoid disp()

private:

int m_radius;};

C語言輸出正方形,不知道哪錯了,求解

scanf n n 沒有 n的用法 你的程式不能輸出正方形 include stdio.h main printf n i 1 while i n 2 i 1 while i n printf n 有時間的話可以看看這個 把scanf n n 中的 n改成 d 在i 後的 後加兩句 printf n...

C語言程式設計序比如輸入正方形邊長求其面積和周長正方體求體積

第乙個 求數字位數 include include include define crt secure no depercate int main void else if data 1000 printf the number 4d has 4 numbers.n else if data 100...

c 題目,讀程式寫結果,C 看程式寫結果題怎麼做

第一,輸出字串是因為cout輸入是流式輸出,對指向字串的指標,會輸出這個串。第二,輸出cde,是因為執行順序是 p s 1 初值 p 然後再p 然後再cout,直到e。這樣的 比較 而且不是易懂,易錯。不應該寫這樣的 for p s 1 p 這樣就好懂了。還有另外兩個地方,乙個是你的指標沒有初始化就...