JBTALKS.CC

标题: C++ programming 大家帮我 [打印本页]

作者: ぁあぃ←    时间: 2009-10-8 10:06 PM
标题: C++ programming 大家帮我
Write a program using for loops to produce a hollow box using the asterisk (*) symbol. The program should prompt the user for the height of the hollow box and check to see that the user entered a number greater than or equal to 3 and less than or equal to 40. If the user enters an invalid number, the program will print an error message and exit. If the user enters a valid number the program will print a hollow box of height and width n, where n is the number the user entered at the console.


我很乱

我是新手。。。。

谢谢


如果有人愿意帮我

麻烦

pm我

我给你我的msn。。。

  1. #include <stdio.h>
  2. int main()
  3. {
  4.         int i,j,k;
  5.         printf("Enter a value:\n");
  6.         scanf("%d", &i,j,k);
  7.         {
  8.         for(i=0; i<=3; i++)
  9.         for(j=0; j>=40; j--)
  10.         printf(" ");
  11.         {
  12.         for(k=1; k<=i; k=k+1)
  13.         printf("*");
  14.         printf("\n");
  15. }
  16. }
  17. }
复制代码

[ 本帖最后由 ぁあぃ← 于 2009-10-8 10:13 PM 编辑 ]
作者: Super-Tomato    时间: 2009-10-8 10:37 PM
原帖由 ぁあぃ← 于 2009-10-8 10:06 PM 发表
Write a program using for loops to produce a hollow box using the asterisk (*) symbol. The program should prompt the user for the height of the hollow box and check to see that the user entered a ...



看來基礎該好好提升, 還有如果不清楚該怎麼做的話, 先畫出 flow chart 才開始編寫
作者: ぁあぃ←    时间: 2009-10-8 10:46 PM
标题: 回复 #2 Super-Tomato 的帖子
flow chart又是什么?==

我这个是short sememster==

3个月

根本什么都没学到
作者: Dhilip89    时间: 2009-10-8 11:18 PM
刚写好的,拿去参考吧 (不知道对不对)


代码:
  1. /******************************************************************************
  2. * File: hbox.c
  3. *
  4. * Purpose: Produce a hollow box using asterisk symbol using for loop.
  5. * Author:        Dhilip89
  6. * Date:        9-Oct-09
  7. * Notes:
  8. *                        Write a program using for loops to produce a hollow box using the
  9. *                        asterisk (*) symbol. The program should prompt the user for
  10. *                        the height of the hollow box and check to see that the user
  11. *                        entered a number greater than or equal to 3 and less than or
  12. *                        equal to 40. If the user enters an invalid number, the program
  13. *                        will print an error message and exit. If the user enters a
  14. *                        valid number the program will print a hollow box of height and
  15. *                        width n, where n is the number the user entered at the console.
  16. *
  17. ******************************************************************************/

  18. #include <stdio.h>

  19. int main(void) {

  20.         int iSize, iMin = 3, iMax = 40;
  21.         int i, j;
  22.         printf("Enter the size (Between %d ~ %d): ", iMin, iMax);
  23.         scanf("%d", &iSize);

  24.         if ((iSize >= iMin) && (iSize <= iMax))
  25.         {

  26.                 for (i = 1; i <= iSize; i++)
  27.                 {
  28.                         for (j = 1; j <= iSize; j++)
  29.                         {
  30.                                 if ((i == 1) || (i == iSize))
  31.                                 {
  32.                                         printf("*");
  33.                                 }

  34.                                 else if ((j == 1) || (j == iSize))
  35.                                 {
  36.                                         printf("*");
  37.                                 }
  38.                                 else
  39.                                 {
  40.                                         printf(" ");
  41.                                 }
  42.                         }

  43.                         printf("\n");
  44.                 }

  45.         }
  46.         else
  47.         {
  48.                 printf("Error: Invalid value entered!\n");
  49.         }

  50.         return 0;
  51. }
复制代码
结果:


[ 本帖最后由 Dhilip89 于 2009-10-9 01:46 PM 编辑 ]
作者: 宅男-兜着走    时间: 2009-10-9 04:02 AM
标题: 回复 #1 ぁあぃ← 的帖子
不是叫你画金字塔就偷笑了 -.-||| , 我跟你的命运差不多。
作者: ぁあぃ←    时间: 2009-10-9 09:10 AM
标题: 回复 #5 宅男-兜着走 的帖子
谢谢你

不过好像不是这样勒

如果打 1,2

他会整个跳出来~

形成的很像是要

*
**
***
这样的~
作者: 宅男-兜着走    时间: 2009-10-9 09:17 AM
标题: 回复 #6 ぁあぃ← 的帖子
你做过哦? -.-||| 老掉。 这个是让人讨厌的东西。 呵呵呵呵。
作者: ぁあぃ←    时间: 2009-10-9 10:51 AM
标题: 回复 #7 宅男-兜着走 的帖子
没有==

烦人的assignment~
作者: 不愛哭の小犬    时间: 2009-10-9 10:56 AM
原帖由 ぁあぃ← 于 2009-10-8 10:06 PM 发表
Write a program using for loops to produce a hollow box using the asterisk (*) symbol. The program should prompt the user for the height of the hollow box and check to see that the user entered a ...



是真的有點難度的東西
聽說要用MS visual 6.0寫出來的才算噢
不能用software的~~
作者: Super-Tomato    时间: 2009-10-9 12:23 PM
原帖由 不愛哭の小犬 于 2009-10-9 10:56 AM 发表



是真的有點難度的東西
聽說要用MS visual 6.0寫出來的才算噢
不能用software的~~



何謂 Software?? 那 Visual Studio 6.0 是否是 Software??
作者: Dhilip89    时间: 2009-10-9 01:47 PM
更改了代码,参考第4楼
作者: 宅男-兜着走    时间: 2009-10-9 01:49 PM
标题: 回复 #8 ぁあぃ← 的帖子
还好啦~每个programmer 必经之路。 最近做了习题 是这样

*
**
***
**
*

-.-|||

后来前天考试

   *
    **
  ***
****
  ***
    **
      *

-.-|||

不能创意点吗。
教科书不能创意点。
不过那个时候我是考 Javascript啦
作者: Super-Tomato    时间: 2009-10-9 02:13 PM
原帖由 宅男-兜着走 于 2009-10-9 01:49 PM 发表
还好啦~每个programmer 必经之路。 最近做了习题 是这样

*
**
***
**
*

-.-|||

后来前天考试

   *
    **
  ***
****
  ***
    **
      *

-.-|||

不能创意点吗。
教科书不能创 ...



不然考試就是出 x'mas tree

     *
    ***
   *****
  *******
*********
***********
      *
     ***
    *****


這些千篇一率, 最重要是看你怎麼把這些 coding 寫成 function 重複性使用, 且用最短的方式編寫出可加強你編寫的技巧
作者: ぁあぃ←    时间: 2009-10-9 04:26 PM
谢谢大家的帮忙= =




欢迎光临 JBTALKS.CC (https://jbtalks.my/) Powered by Discuz! X2.5